Skip to content

Commit

Permalink
chore(release): version 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
andywiecko committed Apr 23, 2022
1 parent ef10ba8 commit f35c13c
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 10 deletions.
30 changes: 21 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,32 +1,44 @@
# Change log

## [1.3.0] - 2022-01-24
## [1.4.0] – 2022-04-23

### Features

- `NativeArray2d<T>` added. Wrapper for two-dimensional `NativeArray<T>`. Support for reading rows in parallel jobs.
- `Native2dTree` added. Currently, only AABB Range query is implemented, NN and k-NN search are TODO.
- `NativeBoundingVolumeTree<AABB>` tree vs. tree intersections implementation using queue. The result is stored in `NativeList<int2>`.

### Changes

- Renaming `BoundingVolumeTree<T>` into `NativeBoundingVolumeTree<T>`. Old class is still available, but is marked with Obsolete attribute. Additionally fix some minor typoes in methods names and adds `ReadOnly` substruct.

## [1.3.0] – 2022-01-24

### Features

- `Span<T>` and `ReadOnlySpan<T>` support for Native Indexed Collections added.
- Debug View for `NativeIndexedArray`, `NativeIndexedList`, and `NativeStack` added.

## [1.2.0] - 2021-12-09
## [1.2.0] 2021-12-09

### Features

- `IdEnumerator<Id>` and `IdValueEnumerator<Id, T>` added.
- Unity version update: 2021.2.5f1.

## [1.1.0] - 2021-12-04
## [1.1.0] 2021-12-04

### Features

- `Id{T}` added.
- `NativeIndexedArray{Id, T}` added.
- `NativeIndexedList{Id, T}` added.
- `NativeAccumulatedProduct{T, Op}` added.
- `Id<T>` added.
- `NativeIndexedArray<Id, T>` added.
- `NativeIndexedList<Id, T>` added.
- `NativeAccumulatedProduct<T, Op>` added.
- `IAbelianOperator` and basic implementations added.

## [1.0.0] ⁠– 2021-11-28

### Features

- `NativeStack{T}` added.
- `BoundingVolumeTree{T}` added.
- `NativeStack<T>` added.
- `BoundingVolumeTree<T>` added.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ To use the package choose one of the following:
- Clone or download this repository and then select `package.json` using Package Manager (`Window/Package Manager`).

- Use package manager via git install: `https://github.com/andywiecko/BurstCollections.git`.
(Note: one can specify exact version with a proper tag: `https://github.com/andywiecko/BurstCollections.git#v1.4.0`)

## NativeStack{T}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "com.andywiecko.burst.collections",
"version": "1.3.0",
"version": "1.4.0",
"displayName": "Burst Collections",
"description": "Burst friendly (special) native collections for Unity.",
"unity": "2021.2",
Expand Down

0 comments on commit f35c13c

Please sign in to comment.