diff --git a/CHANGELOG.md b/CHANGELOG.md index e5d23ed..e9f779a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Change log +## [1.7.0] – 2022-12-06 + +### Features + +- `NativeStackedLists` added. It can be used as an alternative for nested collections. + ## [1.6.0] – 2022-09-08 ### Features @@ -10,7 +16,7 @@ ### Features -- `NativePointQuadtree` added. Implemented quadtree supports for AABB range query. +- `NativePointQuadtree` added. Implemented quadtree supports for AABB range query. - `Reinterpret` and `ElementAt` methods for `NativeIndexedArray` added. - `Ref` class added. It is handy for using with native collections. diff --git a/README.md b/README.md index 16e3409..c456c0a 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ Add or modify scoped registries in the manifest and in the dependencies provide selected version of the package
 "dependencies": {
-    "com.andywiecko.burst.collections": "1.6.0",
+    "com.andywiecko.burst.collections": "1.7.0",
     ...
 
See Unity docs for more details https://docs.unity3d.com/2021.1/Documentation/Manual/upm-scoped.html @@ -49,7 +49,7 @@ See Unity docs for more details https://docs.unity3d.com/2021.1/Documentation/Ma
git install -Use package manager via git install: https://github.com/andywiecko/BurstCollections.git#v1.6.0 +Use package manager via git install: https://github.com/andywiecko/BurstCollections.git#v1.7.0
diff --git a/package.json b/package.json index 0b86f7f..95f54fb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "com.andywiecko.burst.collections", - "version": "1.6.0", + "version": "1.7.0", "displayName": "Burst Collections", "description": "Burst friendly (special) native collections for Unity.", "unity": "2021.2",