Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
DogLooksGood committed Sep 26, 2023
1 parent 17d0ce7 commit 4ac89be
Show file tree
Hide file tree
Showing 12 changed files with 49 additions and 44 deletions.
22 changes: 11 additions & 11 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ members = [
]

[workspace.dependencies]
race-core = { path = "core", version = ">=0.1.0" }
race-api = { path = "api", version = ">=0.1.0" }
race-proc-macro = { path = "proc-macro", version = ">=0.1.0" }
race-client = { path = "client", version = ">=0.1.0" }
race-encryptor = { path = "encryptor", version = ">=0.1.0" }
race-env = { path = "env", version = ">=0.1.0" }
race-test = { path = "test", version = ">=0.1.0" }
race-transport = { path = "transport", version = ">=0.1.0" }
race-api = { path = "api", version = ">=0.2.0" }
race-proc-macro = { path = "proc-macro", version = ">=0.2.0" }
race-core = { path = "core", version = ">=0.2.0" }
race-client = { path = "client", version = ">=0.2.0" }
race-encryptor = { path = "encryptor", version = ">=0.2.0" }
race-test = { path = "test", version = ">=0.2.0" }
race-env = { path = "env", version = "*" }
race-transport = { path = "transport", version = "*" }
uuid = { version = "1.1.2", features = ["v4", "fast-rng"] }
syn = "1.0.107"
quote = "1.0.23"
Expand Down Expand Up @@ -78,7 +78,7 @@ regex = "1"

[workspace.package]
authors = ["RACE Foundation <race.game.team@gmail.com>"]
version = "0.1.0"
version = "0.2.0"
edition = "2021"
rust-version = "1.65.0"
license = "MPL-2.0"
Expand Down
2 changes: 1 addition & 1 deletion Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -123,4 +123,4 @@ publish-crates pkg:
cargo test -p {{pkg}}
cargo publish -p {{pkg}}

publish-crates-all: (publish-crates "race-core") (publish-crates "race-proc-macro") (publish-crates "race-env") (publish-crates "race-encryptor") (publish-crates "race-transport") (publish-crates "race-client") (publish-crates "race-test")
publish-crates-all: (publish-crates "race-api") (publish-crates "race-proc-macro") (publish-crates "race-core") (publish-crates "race-encryptor") (publish-crates "race-client") (publish-crates "race-test")
23 changes: 14 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,20 @@ Work in progress, not ready to accept contributions yet.

## Rust

| Package | Version | Description |
|-------------------|-------------------------------------------------------------------------------------------------------------------------|-----------------------------------------|
| race-core | [![Crates.io](https://img.shields.io/crates/v/race-core?logo=rust)](https://crates.io/crates/race-core) | Core lib |
| race-proc-macro | [![Crates.io](https://img.shields.io/crates/v/race-proc-macro?logo=rust)](https://crates.io/crates/race-proc-macro) | SDK proc macros |
| race-env | [![Crates.io](https://img.shields.io/crates/v/race-env?logo=rust)](https://crates.io/crates/race-env) | Environment module |
| race-encryptor | [![Crates.io](https://img.shields.io/crates/v/race-encryptor?logo=rust)](https://crates.io/crates/race-encryptor) | Encryptor module |
| race-transport | [![Crates.io](https://img.shields.io/crates/v/race-transport?logo=rust)](https://crates.io/crates/race-transport) | Transport module |
| race-client | [![Crates.io](https://img.shields.io/crates/v/race-client?logo=rust)](https://crates.io/crates/race-client) | Client module |
| race-test | [![Crates.io](https://img.shields.io/crates/v/race-test?logo=rust)](https://crates.io/crates/race-test) | Testkit |
| Package | Version | Description |
|-----------------|---------------------------------------------------------------------------------------------------------------------|---------------------|
| race-api | [![Crates.io](https://img.shields.io/crates/v/race-api?logo=rust)](https://crates.io/crates/race-api) | API for game bundle |
| race-core | [![Crates.io](https://img.shields.io/crates/v/race-core?logo=rust)](https://crates.io/crates/race-core) | Core lib |
| race-proc-macro | [![Crates.io](https://img.shields.io/crates/v/race-proc-macro?logo=rust)](https://crates.io/crates/race-proc-macro) | SDK proc macros |
| race-encryptor | [![Crates.io](https://img.shields.io/crates/v/race-encryptor?logo=rust)](https://crates.io/crates/race-encryptor) | Encryptor module |
| race-client | [![Crates.io](https://img.shields.io/crates/v/race-client?logo=rust)](https://crates.io/crates/race-client) | Client module |
| race-test | [![Crates.io](https://img.shields.io/crates/v/race-test?logo=rust)](https://crates.io/crates/race-test) | Testkit |

### Binary Releases

- `race-facade`: The test server used in development
- `race-transactor`: The transactor server
- `race-cli`: The tools to manage on-chain accounts

## Contracts

Expand Down
4 changes: 2 additions & 2 deletions js/borsh/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion js/borsh/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@race-foundation/borsh",
"version": "0.1.0",
"version": "0.1.1",
"description": "A borsh implementation with decorator support",
"repository": {
"type": "git",
Expand Down
8 changes: 4 additions & 4 deletions js/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions js/sdk-core/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion js/sdk-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@race-foundation/sdk-core",
"version": "0.1.0",
"version": "0.1.1",
"description": "The type definitions for Race SDK",
"scripts": {
"test": "jest",
Expand Down
2 changes: 1 addition & 1 deletion js/sdk-facade/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@race-foundation/sdk-facade",
"version": "0.1.0",
"version": "0.1.1",
"description": "The Facade integration for Race SDK",
"main": "lib/cjs/index.ts",
"module": "lib/esm/index.js",
Expand Down
4 changes: 2 additions & 2 deletions js/sdk-solana/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion js/sdk-solana/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@race-foundation/sdk-solana",
"version": "0.1.0",
"version": "0.1.1",
"description": "The Solana support for Race SDK",
"scripts": {
"test": "jest",
Expand Down

0 comments on commit 4ac89be

Please sign in to comment.