Skip to content

Commit

Permalink
Updated release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
sschmid committed May 12, 2016
1 parent e650c97 commit 4bd5244
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Entitas/Entitas/entitas_version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.31.0
0.31.1
18 changes: 18 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
# 0.31.1

##### Entitas.CodeGenerator
- Improved component generation for classes and interfaces and added support for default pool [Pool]
- Added support to CustomComponentNameAttribute to generate multiple components with different names for one class or interface

```csharp
// This will automatically generate PositionComponent and VelocityComponent for you
[Pool, CustomComponentName("Position", "Velocity")]
public struct IntVector2 {
public int x;
public int y;
}
```

- Added support for generating components for structs
- Not generating obsolete pool attributes for generated classes

# 0.31.0

##### General
Expand Down
Binary file modified bin/Entitas-CSharp.zip
Binary file not shown.
Binary file modified bin/Entitas-Unity.zip
Binary file not shown.

0 comments on commit 4bd5244

Please sign in to comment.