Skip to content
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.

Commit

Permalink
chore(release): 3.1.0 [skip ci]
Browse files Browse the repository at this point in the history
# [3.1.0](v3.0.0...v3.1.0) (2021-03-10)

### Bug Fixes

* 🚑 Fix SequenceJobs to be burst compiled ([d98957d](d98957d))
* 🐛 Fix ElementAtOrDefault throwing an exception ([8c0c4ca](8c0c4ca))

### Features

* ✨ Add NativeArray.Sum ([de7a7d3](de7a7d3)), closes [#66](#66)
* ✨ Add Run and Schedule NativeArray.ElementAt ([6f5632a](6f5632a))
* ✨ Add Run/Schedule NativeArray Last ([3389ff2](3389ff2))
* ✨ Add Run/Schedule NativeArray Single ([97d72d2](97d72d2))
* ✨ Implement NativeArray Run/Schedule First ([9f2f6f7](9f2f6f7))
* ✨ Implement NativeArray RunAverage, ScheduleAverage ([e67b087](e67b087))
* ✨ Implement Run and Schedule Contains ([5dd471f](5dd471f)), closes [#70](#70)
* ✨ Implement RunAggregate and ScheduleAggregate ([7e043e2](7e043e2)), closes [#67](#67)
* ✨ Implement RunAll and ScheduleAll ([9a73d53](9a73d53)), closes [#68](#68)
* ✨ Implement RunAny and ScheduleAny ([d4f31f9](d4f31f9)), closes [#69](#69)
* ✨ Implement RunCount and ScheduleCount ([db6f372](db6f372)), closes [#71](#71)
* ✨ Implement RunElementAt and ScheduleElementAt ([4e6e6b1](4e6e6b1)), closes [#72](#72)
* ✨ Implement RunFirst and ScheduleFirst ([2b9fb95](2b9fb95)), closes [#74](#74)
* ✨ Implement RunLongCount and ScheduleLongCount ([6a2f413](6a2f413)), closes [#76](#76)
* ✨ Implement RunMaxMin and ScheduleMaxMin ([ca76b9a](ca76b9a)), closes [#65](#65)
* ✨ Implement RunMaxMin and ScheduleMaxMin ([24796f7](24796f7))
* ✨ Implement RunSequenceEqual and ScheduleSequenceEqual ([958daf7](958daf7)), closes [#77](#77)
* ✨ Implement RunSingle and ScheduleSingle ([01a4601](01a4601)), closes [#78](#78)
* ✨ Implement RunSum and ScheduleSum ([00fa0ea](00fa0ea)), closes [#66](#66)
* ✨ Implment RunLast and ScheduleLast ([d650406](d650406)), closes [#75](#75)
* ✨ Reduce constraints in Single API ([abd6d10](abd6d10))
* Add NativeArray MaxMin ([e03c6c4](e03c6c4))
  • Loading branch information
semantic-release-bot committed Mar 10, 2021
1 parent 3235fd5 commit c9723dc
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 2 deletions.
34 changes: 34 additions & 0 deletions Packages/com.careboo.blinq/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,37 @@
# [3.1.0](https://github.com/CareBoo/Blinq/compare/v3.0.0...v3.1.0) (2021-03-10)


### Bug Fixes

* :ambulance: Fix SequenceJobs to be burst compiled ([d98957d](https://github.com/CareBoo/Blinq/commit/d98957d0a2fb736b0c86bee36f8c31ecdcdedfea))
* :bug: Fix ElementAtOrDefault throwing an exception ([8c0c4ca](https://github.com/CareBoo/Blinq/commit/8c0c4cadff64c42a6d95932fe5b10bcee7613c19))


### Features

* :sparkles: Add NativeArray.Sum ([de7a7d3](https://github.com/CareBoo/Blinq/commit/de7a7d309832540554a612f4fca27aabf63dd798)), closes [#66](https://github.com/CareBoo/Blinq/issues/66)
* :sparkles: Add Run and Schedule NativeArray.ElementAt ([6f5632a](https://github.com/CareBoo/Blinq/commit/6f5632ab235802b8fba0903050ca27de463d2f2c))
* :sparkles: Add Run/Schedule NativeArray Last ([3389ff2](https://github.com/CareBoo/Blinq/commit/3389ff2eb9dfa623c982227168137a2bb93699b5))
* :sparkles: Add Run/Schedule NativeArray Single ([97d72d2](https://github.com/CareBoo/Blinq/commit/97d72d27886a81be5353317ffa297f066e0fa71b))
* :sparkles: Implement NativeArray Run/Schedule First ([9f2f6f7](https://github.com/CareBoo/Blinq/commit/9f2f6f7b119ad4a7a1ec5da481b6014656b1c770))
* :sparkles: Implement NativeArray RunAverage, ScheduleAverage ([e67b087](https://github.com/CareBoo/Blinq/commit/e67b08740d30bb18579ccfba880141b7a752e21f))
* :sparkles: Implement Run and Schedule Contains ([5dd471f](https://github.com/CareBoo/Blinq/commit/5dd471f63fa2da39f63d1be923e71434ae3676cb)), closes [#70](https://github.com/CareBoo/Blinq/issues/70)
* :sparkles: Implement RunAggregate and ScheduleAggregate ([7e043e2](https://github.com/CareBoo/Blinq/commit/7e043e20ae77eff45dd2c9f2134e41dfa0271ea3)), closes [#67](https://github.com/CareBoo/Blinq/issues/67)
* :sparkles: Implement RunAll and ScheduleAll ([9a73d53](https://github.com/CareBoo/Blinq/commit/9a73d5312910fb8bff9db002eb8ab57ea38b4183)), closes [#68](https://github.com/CareBoo/Blinq/issues/68)
* :sparkles: Implement RunAny and ScheduleAny ([d4f31f9](https://github.com/CareBoo/Blinq/commit/d4f31f96040c790c3febf7e123c10635ca7b4456)), closes [#69](https://github.com/CareBoo/Blinq/issues/69)
* :sparkles: Implement RunCount and ScheduleCount ([db6f372](https://github.com/CareBoo/Blinq/commit/db6f372db5d668ff6014b4f84cb07f5d2ecf52f8)), closes [#71](https://github.com/CareBoo/Blinq/issues/71)
* :sparkles: Implement RunElementAt and ScheduleElementAt ([4e6e6b1](https://github.com/CareBoo/Blinq/commit/4e6e6b1c53527dc3ef390451209465e2b52b2736)), closes [#72](https://github.com/CareBoo/Blinq/issues/72)
* :sparkles: Implement RunFirst and ScheduleFirst ([2b9fb95](https://github.com/CareBoo/Blinq/commit/2b9fb959d42b70c11cb679a3086cd96b0cf65074)), closes [#74](https://github.com/CareBoo/Blinq/issues/74)
* :sparkles: Implement RunLongCount and ScheduleLongCount ([6a2f413](https://github.com/CareBoo/Blinq/commit/6a2f413abca0828b4284eaaa0dcb5f71d08da506)), closes [#76](https://github.com/CareBoo/Blinq/issues/76)
* :sparkles: Implement RunMaxMin and ScheduleMaxMin ([ca76b9a](https://github.com/CareBoo/Blinq/commit/ca76b9a85cb654c588c50be377082ff7357bad26)), closes [#65](https://github.com/CareBoo/Blinq/issues/65)
* :sparkles: Implement RunMaxMin and ScheduleMaxMin ([24796f7](https://github.com/CareBoo/Blinq/commit/24796f72a458a44ab89265670faa84a7dd9b4eb3))
* :sparkles: Implement RunSequenceEqual and ScheduleSequenceEqual ([958daf7](https://github.com/CareBoo/Blinq/commit/958daf76b524b62ed1714c06ed04f8ae922248e4)), closes [#77](https://github.com/CareBoo/Blinq/issues/77)
* :sparkles: Implement RunSingle and ScheduleSingle ([01a4601](https://github.com/CareBoo/Blinq/commit/01a4601f3c831362d8a153d0dbb89c917a00ba49)), closes [#78](https://github.com/CareBoo/Blinq/issues/78)
* :sparkles: Implement RunSum and ScheduleSum ([00fa0ea](https://github.com/CareBoo/Blinq/commit/00fa0eaa44f4dd91e6298931e3de95ac8a1b63e5)), closes [#66](https://github.com/CareBoo/Blinq/issues/66)
* :sparkles: Implment RunLast and ScheduleLast ([d650406](https://github.com/CareBoo/Blinq/commit/d650406b13a8e4c28a1fb112df35477b2981ff00)), closes [#75](https://github.com/CareBoo/Blinq/issues/75)
* :sparkles: Reduce constraints in Single API ([abd6d10](https://github.com/CareBoo/Blinq/commit/abd6d105945dd0b7cd0ebdf30ebd753793411a7b))
* Add NativeArray MaxMin ([e03c6c4](https://github.com/CareBoo/Blinq/commit/e03c6c4fce544c5debf805eaea8d93d765fc35df))

# [3.1.0-preview.11](https://github.com/CareBoo/Blinq/compare/v3.1.0-preview.10...v3.1.0-preview.11) (2020-12-21)


Expand Down
4 changes: 2 additions & 2 deletions Packages/com.careboo.blinq/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "com.careboo.blinq",
"displayName": "Blinq",
"version": "3.1.0-preview.11",
"version": "3.1.0",
"unity": "2020.1",
"description": "Adds Burst-compatible, LINQ extension methods like Select, Where, and Any to `NativeArray`.",
"dependencies": {
Expand All @@ -16,4 +16,4 @@
"publishConfig": {
"registry": "https://npm.pkg.github.com/@careboo"
}
}
}

0 comments on commit c9723dc

Please sign in to comment.