Skip to content

Commit

Permalink
chore(release): graduate prerelease packages
Browse files Browse the repository at this point in the history
 - @rimbu/actor@0.12.0
 - @rimbu/base@1.0.0
 - @rimbu/bimap@1.0.0
 - @rimbu/bimultimap@1.0.0
 - @rimbu/collection-types@1.0.0
 - @rimbu/common@1.0.0
 - @rimbu/core@1.0.0
 - @rimbu/deep@1.0.0
 - @rimbu/graph@1.0.0
 - @rimbu/hashed@1.0.0
 - @rimbu/list@1.0.0
 - @rimbu/multimap@1.0.0
 - @rimbu/multiset@1.0.0
 - @rimbu/ordered@1.0.0
 - @rimbu/proximity@1.0.0
 - @rimbu/reactor@0.12.0
 - @rimbu/sorted@1.0.0
 - @rimbu/spy@0.5.0
 - @rimbu/stream@1.0.0
 - @rimbu/table@1.0.0
 - @rimbu/typical@0.6.0
  • Loading branch information
GitHub Action committed Jul 3, 2023
1 parent 5f9e27c commit c9d33ec
Show file tree
Hide file tree
Showing 42 changed files with 194 additions and 110 deletions.
4 changes: 4 additions & 0 deletions packages/actor/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.12.0](https://github.com/rimbu-org/rimbu/compare/@rimbu/actor@0.12.0-alpha.2...@rimbu/actor@0.12.0) (2023-07-03)

**Note:** Version bump only for package @rimbu/actor

# [0.12.0-alpha.2](https://github.com/rimbu-org/rimbu/compare/@rimbu/actor@0.12.0-alpha.1...@rimbu/actor@0.12.0-alpha.2) (2023-07-02)

**Note:** Version bump only for package @rimbu/actor
Expand Down
6 changes: 3 additions & 3 deletions packages/actor/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rimbu/actor",
"version": "0.12.0-alpha.2",
"version": "0.12.0",
"description": "State management tools to create stateful logic that can be easily integrated in any framework",
"keywords": [
"redux",
Expand Down Expand Up @@ -109,14 +109,14 @@
"typecheck": "tsc"
},
"dependencies": {
"@rimbu/common": "^1.0.0-alpha.2",
"@rimbu/common": "^1.0.0",
"tslib": "^2.5.3"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@rimbu/stream": "^1.0.0-alpha.2",
"@rimbu/stream": "^1.0.0",
"happy-dom": "^9.20.3",
"immer": "^9.0.16"
}
Expand Down
4 changes: 4 additions & 0 deletions packages/base/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.0.0](https://github.com/rimbu-org/rimbu/compare/@rimbu/base@1.0.0-alpha.2...@rimbu/base@1.0.0) (2023-07-03)

**Note:** Version bump only for package @rimbu/base

# [1.0.0-alpha.2](https://github.com/rimbu-org/rimbu/compare/@rimbu/base@1.0.0-alpha.1...@rimbu/base@1.0.0-alpha.2) (2023-07-02)

**Note:** Version bump only for package @rimbu/base
Expand Down
4 changes: 2 additions & 2 deletions packages/base/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rimbu/base",
"version": "1.0.0-alpha.2",
"version": "1.0.0",
"description": "Utilities to implement Rimbu collections",
"keywords": [
"array",
Expand Down Expand Up @@ -67,7 +67,7 @@
"typecheck": "tsc"
},
"dependencies": {
"@rimbu/common": "^1.0.0-alpha.2",
"@rimbu/common": "^1.0.0",
"tslib": "^2.5.3"
},
"publishConfig": {
Expand Down
4 changes: 4 additions & 0 deletions packages/bimap/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.0.0](https://github.com/rimbu-org/rimbu/compare/@rimbu/bimap@1.0.0-alpha.2...@rimbu/bimap@1.0.0) (2023-07-03)

**Note:** Version bump only for package @rimbu/bimap

# [1.0.0-alpha.2](https://github.com/rimbu-org/rimbu/compare/@rimbu/bimap@1.0.0-alpha.1...@rimbu/bimap@1.0.0-alpha.2) (2023-07-02)

**Note:** Version bump only for package @rimbu/bimap
Expand Down
12 changes: 6 additions & 6 deletions packages/bimap/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rimbu/bimap",
"version": "1.0.0-alpha.2",
"version": "1.0.0",
"description": "A bidirectional immutable Map of keys and values for TypeScript",
"keywords": [
"bimap",
Expand Down Expand Up @@ -99,11 +99,11 @@
"typecheck": "tsc"
},
"dependencies": {
"@rimbu/base": "^1.0.0-alpha.2",
"@rimbu/collection-types": "^1.0.0-alpha.2",
"@rimbu/common": "^1.0.0-alpha.2",
"@rimbu/hashed": "^1.0.0-alpha.2",
"@rimbu/stream": "^1.0.0-alpha.2",
"@rimbu/base": "^1.0.0",
"@rimbu/collection-types": "^1.0.0",
"@rimbu/common": "^1.0.0",
"@rimbu/hashed": "^1.0.0",
"@rimbu/stream": "^1.0.0",
"tslib": "^2.5.3"
},
"publishConfig": {
Expand Down
4 changes: 4 additions & 0 deletions packages/bimultimap/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.0.0](https://github.com/rimbu-org/rimbu/compare/@rimbu/bimultimap@1.0.0-alpha.2...@rimbu/bimultimap@1.0.0) (2023-07-03)

**Note:** Version bump only for package @rimbu/bimultimap

# [1.0.0-alpha.2](https://github.com/rimbu-org/rimbu/compare/@rimbu/bimultimap@1.0.0-alpha.1...@rimbu/bimultimap@1.0.0-alpha.2) (2023-07-02)

**Note:** Version bump only for package @rimbu/bimultimap
Expand Down
16 changes: 8 additions & 8 deletions packages/bimultimap/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rimbu/bimultimap",
"version": "1.0.0-alpha.2",
"version": "1.0.0",
"description": "A bidirectional immutable MultiMap of keys and values for TypeScript",
"keywords": [
"bimultimap",
Expand Down Expand Up @@ -98,13 +98,13 @@
"typecheck": "tsc"
},
"dependencies": {
"@rimbu/base": "^1.0.0-alpha.2",
"@rimbu/collection-types": "^1.0.0-alpha.2",
"@rimbu/common": "^1.0.0-alpha.2",
"@rimbu/hashed": "^1.0.0-alpha.2",
"@rimbu/multimap": "^1.0.0-alpha.2",
"@rimbu/sorted": "^1.0.0-alpha.2",
"@rimbu/stream": "^1.0.0-alpha.2",
"@rimbu/base": "^1.0.0",
"@rimbu/collection-types": "^1.0.0",
"@rimbu/common": "^1.0.0",
"@rimbu/hashed": "^1.0.0",
"@rimbu/multimap": "^1.0.0",
"@rimbu/sorted": "^1.0.0",
"@rimbu/stream": "^1.0.0",
"tslib": "^2.5.3"
},
"publishConfig": {
Expand Down
4 changes: 4 additions & 0 deletions packages/collection-types/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.0.0](https://github.com/rimbu-org/rimbu/compare/@rimbu/collection-types@1.0.0-alpha.2...@rimbu/collection-types@1.0.0) (2023-07-03)

**Note:** Version bump only for package @rimbu/collection-types

# [1.0.0-alpha.2](https://github.com/rimbu-org/rimbu/compare/@rimbu/collection-types@1.0.0-alpha.1...@rimbu/collection-types@1.0.0-alpha.2) (2023-07-02)

**Note:** Version bump only for package @rimbu/collection-types
Expand Down
8 changes: 4 additions & 4 deletions packages/collection-types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rimbu/collection-types",
"version": "1.0.0-alpha.2",
"version": "1.0.0",
"description": "Type definitions for the basic generic Rimbu collections",
"keywords": [
"definitions",
Expand Down Expand Up @@ -124,9 +124,9 @@
"typecheck": "tsc"
},
"dependencies": {
"@rimbu/base": "^1.0.0-alpha.2",
"@rimbu/common": "^1.0.0-alpha.2",
"@rimbu/stream": "^1.0.0-alpha.2",
"@rimbu/base": "^1.0.0",
"@rimbu/common": "^1.0.0",
"@rimbu/stream": "^1.0.0",
"tslib": "^2.5.3"
},
"publishConfig": {
Expand Down
4 changes: 4 additions & 0 deletions packages/common/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.0.0](https://github.com/rimbu-org/rimbu/compare/@rimbu/common@1.0.0-alpha.2...@rimbu/common@1.0.0) (2023-07-03)

**Note:** Version bump only for package @rimbu/common

# [1.0.0-alpha.2](https://github.com/rimbu-org/rimbu/compare/@rimbu/common@1.0.0-alpha.1...@rimbu/common@1.0.0-alpha.2) (2023-07-02)

**Note:** Version bump only for package @rimbu/common
Expand Down
2 changes: 1 addition & 1 deletion packages/common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rimbu/common",
"version": "1.0.0-alpha.2",
"version": "1.0.0",
"description": "Common types and objects used in many other Rimbu packages",
"keywords": [
"common",
Expand Down
4 changes: 4 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.0.0](https://github.com/rimbu-org/rimbu/compare/@rimbu/core@1.0.0-alpha.2...@rimbu/core@1.0.0) (2023-07-03)

**Note:** Version bump only for package @rimbu/core

# [1.0.0-alpha.2](https://github.com/rimbu-org/rimbu/compare/@rimbu/core@1.0.0-alpha.1...@rimbu/core@1.0.0-alpha.2) (2023-07-02)

**Note:** Version bump only for package @rimbu/core
Expand Down
32 changes: 16 additions & 16 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rimbu/core",
"version": "1.0.0-alpha.2",
"version": "1.0.0",
"description": "Immutable collections and tools for TypeScript",
"keywords": [
"collection",
Expand Down Expand Up @@ -97,21 +97,21 @@
"typecheck": "tsc"
},
"dependencies": {
"@rimbu/bimap": "^1.0.0-alpha.2",
"@rimbu/bimultimap": "^1.0.0-alpha.2",
"@rimbu/collection-types": "^1.0.0-alpha.2",
"@rimbu/common": "^1.0.0-alpha.2",
"@rimbu/deep": "^1.0.0-alpha.2",
"@rimbu/graph": "^1.0.0-alpha.2",
"@rimbu/hashed": "^1.0.0-alpha.2",
"@rimbu/list": "^1.0.0-alpha.2",
"@rimbu/multimap": "^1.0.0-alpha.2",
"@rimbu/multiset": "^1.0.0-alpha.2",
"@rimbu/ordered": "^1.0.0-alpha.2",
"@rimbu/proximity": "^1.0.0-alpha.2",
"@rimbu/sorted": "^1.0.0-alpha.2",
"@rimbu/stream": "^1.0.0-alpha.2",
"@rimbu/table": "^1.0.0-alpha.2",
"@rimbu/bimap": "^1.0.0",
"@rimbu/bimultimap": "^1.0.0",
"@rimbu/collection-types": "^1.0.0",
"@rimbu/common": "^1.0.0",
"@rimbu/deep": "^1.0.0",
"@rimbu/graph": "^1.0.0",
"@rimbu/hashed": "^1.0.0",
"@rimbu/list": "^1.0.0",
"@rimbu/multimap": "^1.0.0",
"@rimbu/multiset": "^1.0.0",
"@rimbu/ordered": "^1.0.0",
"@rimbu/proximity": "^1.0.0",
"@rimbu/sorted": "^1.0.0",
"@rimbu/stream": "^1.0.0",
"@rimbu/table": "^1.0.0",
"tslib": "^2.5.3"
},
"publishConfig": {
Expand Down
4 changes: 4 additions & 0 deletions packages/deep/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.0.0](https://github.com/rimbu-org/rimbu/compare/@rimbu/deep@1.0.0-alpha.2...@rimbu/deep@1.0.0) (2023-07-03)

**Note:** Version bump only for package @rimbu/deep

# [1.0.0-alpha.2](https://github.com/rimbu-org/rimbu/compare/@rimbu/deep@1.0.0-alpha.1...@rimbu/deep@1.0.0-alpha.2) (2023-07-02)

**Note:** Version bump only for package @rimbu/deep
Expand Down
6 changes: 3 additions & 3 deletions packages/deep/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rimbu/deep",
"version": "1.0.0-alpha.2",
"version": "1.0.0",
"description": "Tools to use handle plain JS objects as immutable objects",
"keywords": [
"immutable",
Expand Down Expand Up @@ -72,8 +72,8 @@
"typecheck": "tsc"
},
"dependencies": {
"@rimbu/base": "^1.0.0-alpha.2",
"@rimbu/common": "^1.0.0-alpha.2",
"@rimbu/base": "^1.0.0",
"@rimbu/common": "^1.0.0",
"tslib": "^2.5.3"
},
"publishConfig": {
Expand Down
4 changes: 4 additions & 0 deletions packages/graph/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.0.0](https://github.com/rimbu-org/rimbu/compare/@rimbu/graph@1.0.0-alpha.2...@rimbu/graph@1.0.0) (2023-07-03)

**Note:** Version bump only for package @rimbu/graph

# [1.0.0-alpha.2](https://github.com/rimbu-org/rimbu/compare/@rimbu/graph@1.0.0-alpha.1...@rimbu/graph@1.0.0-alpha.2) (2023-07-02)

**Note:** Version bump only for package @rimbu/graph
Expand Down
14 changes: 7 additions & 7 deletions packages/graph/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rimbu/graph",
"version": "1.0.0-alpha.2",
"version": "1.0.0",
"description": "Immutable Graph data structures for TypeScript",
"keywords": [
"graph",
Expand Down Expand Up @@ -106,12 +106,12 @@
"typecheck": "tsc"
},
"dependencies": {
"@rimbu/base": "^1.0.0-alpha.2",
"@rimbu/collection-types": "^1.0.0-alpha.2",
"@rimbu/common": "^1.0.0-alpha.2",
"@rimbu/hashed": "^1.0.0-alpha.2",
"@rimbu/sorted": "^1.0.0-alpha.2",
"@rimbu/stream": "^1.0.0-alpha.2",
"@rimbu/base": "^1.0.0",
"@rimbu/collection-types": "^1.0.0",
"@rimbu/common": "^1.0.0",
"@rimbu/hashed": "^1.0.0",
"@rimbu/sorted": "^1.0.0",
"@rimbu/stream": "^1.0.0",
"tslib": "^2.5.3"
},
"publishConfig": {
Expand Down
4 changes: 4 additions & 0 deletions packages/hashed/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.0.0](https://github.com/rimbu-org/rimbu/compare/@rimbu/hashed@1.0.0-alpha.2...@rimbu/hashed@1.0.0) (2023-07-03)

**Note:** Version bump only for package @rimbu/hashed

# [1.0.0-alpha.2](https://github.com/rimbu-org/rimbu/compare/@rimbu/hashed@1.0.0-alpha.1...@rimbu/hashed@1.0.0-alpha.2) (2023-07-02)

**Note:** Version bump only for package @rimbu/hashed
Expand Down
12 changes: 6 additions & 6 deletions packages/hashed/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rimbu/hashed",
"version": "1.0.0-alpha.2",
"version": "1.0.0",
"description": "Immutable HashMap and HashSet implementations for TypeScript",
"keywords": [
"hashmap",
Expand Down Expand Up @@ -130,11 +130,11 @@
"typecheck": "tsc"
},
"dependencies": {
"@rimbu/base": "^1.0.0-alpha.2",
"@rimbu/collection-types": "^1.0.0-alpha.2",
"@rimbu/common": "^1.0.0-alpha.2",
"@rimbu/list": "^1.0.0-alpha.2",
"@rimbu/stream": "^1.0.0-alpha.2",
"@rimbu/base": "^1.0.0",
"@rimbu/collection-types": "^1.0.0",
"@rimbu/common": "^1.0.0",
"@rimbu/list": "^1.0.0",
"@rimbu/stream": "^1.0.0",
"tslib": "^2.5.3"
},
"publishConfig": {
Expand Down
4 changes: 4 additions & 0 deletions packages/list/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.0.0](https://github.com/rimbu-org/rimbu/compare/@rimbu/list@1.0.0-alpha.2...@rimbu/list@1.0.0) (2023-07-03)

**Note:** Version bump only for package @rimbu/list

# [1.0.0-alpha.2](https://github.com/rimbu-org/rimbu/compare/@rimbu/list@1.0.0-alpha.1...@rimbu/list@1.0.0-alpha.2) (2023-07-02)

**Note:** Version bump only for package @rimbu/list
Expand Down
10 changes: 5 additions & 5 deletions packages/list/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rimbu/list",
"version": "1.0.0-alpha.2",
"version": "1.0.0",
"description": "An efficient immutable ordered sequence of elements akin to a Vector",
"keywords": [
"list",
Expand Down Expand Up @@ -104,10 +104,10 @@
"typecheck": "tsc"
},
"dependencies": {
"@rimbu/base": "^1.0.0-alpha.2",
"@rimbu/collection-types": "^1.0.0-alpha.2",
"@rimbu/common": "^1.0.0-alpha.2",
"@rimbu/stream": "^1.0.0-alpha.2",
"@rimbu/base": "^1.0.0",
"@rimbu/collection-types": "^1.0.0",
"@rimbu/common": "^1.0.0",
"@rimbu/stream": "^1.0.0",
"tslib": "^2.5.3"
},
"publishConfig": {
Expand Down
4 changes: 4 additions & 0 deletions packages/multimap/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.0.0](https://github.com/rimbu-org/rimbu/compare/@rimbu/multimap@1.0.0-alpha.2...@rimbu/multimap@1.0.0) (2023-07-03)

**Note:** Version bump only for package @rimbu/multimap

# [1.0.0-alpha.2](https://github.com/rimbu-org/rimbu/compare/@rimbu/multimap@1.0.0-alpha.1...@rimbu/multimap@1.0.0-alpha.2) (2023-07-02)

**Note:** Version bump only for package @rimbu/multimap
Expand Down
Loading

0 comments on commit c9d33ec

Please sign in to comment.