Skip to content

Commit 60497ad

Browse files
committed
1.0.0alpha1 release.
1 parent 792609b commit 60497ad

2 files changed

Lines changed: 5 additions & 6 deletions

File tree

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
cmake_minimum_required(VERSION 2.8)
22

3-
set(ENTITYX_MAJOR_VERSION 0)
4-
set(ENTITYX_MINOR_VERSION 8)
5-
set(ENTITYX_PATCH_VERSION 1)
3+
set(ENTITYX_MAJOR_VERSION 1)
4+
set(ENTITYX_MINOR_VERSION 0)
5+
set(ENTITYX_PATCH_VERSION 0alpha1)
66
set(ENTITYX_VERSION ${ENTITYX_MAJOR_VERSION}.${ENTITYX_MINOR_VERSION}.${ENTITYX_PATCH_VERSION})
77

88

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# EntityX - A fast, type-safe C++ Entity Component System
1+
# EntityX - A fast, type-safe C++ Entity Component System [![Build Status](https://travis-ci.org/alecthomas/entityx.png)](https://travis-ci.org/alecthomas/entityx)
22

3-
[![Build Status](https://travis-ci.org/alecthomas/entityx.png)](https://travis-ci.org/alecthomas/entityx)
3+
***NOTE: The current version 1.0.0alpha1 breaks backwards compataibility. See the [change log](CHANGES.md) for details.***
44

55
Entity Component Systems (ECS) are a form of decomposition that completely decouples entity logic and data from the entity "objects" themselves. The [Evolve your Hierarchy](http://cowboyprogramming.com/2007/01/05/evolve-your-heirachy/) article provides a solid overview of EC systems and why you should use them.
66

@@ -24,7 +24,6 @@ EntityX now has a mailing list! Send a mail to [entityx@librelist.com](mailto:en
2424

2525
You can also contact me directly via [email](mailto:alec@swapoff.org) or [Twitter](https://twitter.com/alecthomas).
2626

27-
2827
## Recent Notable Changes
2928

3029
- 2014-03-02 - (1.0.0alpha1) Switch to using cache friendly component storage (big breaking change). Also eradicated use of `std::shared_ptr` for components.

0 commit comments

Comments
 (0)