Skip to content

Commit

Permalink
Release 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
DogLooksGood committed Sep 12, 2023
1 parent b7e2418 commit 88c4547
Show file tree
Hide file tree
Showing 15 changed files with 45 additions and 41 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ jobs:
- name: Build CLI
run: cargo build -r -p race-cli

- name: Build Facade
run: cargo build -r -p race-facade

- name: Release
uses: ncipollo/release-action@v1
with:
artifacts: "target/release/race-transactor,target/release/race-cli"
artifacts: "target/release/race-transactor,target/release/race-cli,target/release/race-facade"
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Race Protocol: A multi-chain infrastructure for asymmetric competitive games

# 0.1.0

It basically works with a Holdem game
20 changes: 10 additions & 10 deletions Cargo.lock

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

16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ members = [
]

[workspace.dependencies]
race-core = { path = "core", version = ">=0.0.10" }
race-proc-macro = { path = "proc-macro", version = ">=0.0.10" }
race-client = { path = "client", version = ">=0.0.10" }
race-encryptor = { path = "encryptor", version = ">=0.0.10" }
race-env = { path = "env", version = ">=0.0.10" }
race-test = { path = "test", version = ">=0.0.10" }
race-transport = { path = "transport", version = ">=0.0.10" }
race-core = { path = "core", 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" }
uuid = { version = "1.1.2", features = ["v4", "fast-rng"] }
syn = "1.0.107"
quote = "1.0.23"
Expand Down Expand Up @@ -76,7 +76,7 @@ regex = "1"

[workspace.package]
authors = ["RACE Foundation <race.game.team@gmail.com>"]
version = "0.0.10"
version = "0.1.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-solana-types") (publish-crates "race-transport") (publish-crates "race-client") (publish-crates "race-test")
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")
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,7 @@ Work in progress, not ready to accept contributions yet.
| 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-solana-types | [![Crates.io](https://img.shields.io/crates/v/race-solana-types?logo=rust)](https://crates.io/crates/race-solana-types) | Type definitions for Solana integration |
| race-test | [![Crates.io](https://img.shields.io/crates/v/race-test?logo=rust)](https://crates.io/crates/race-test) | Testkit |
| race-cli | [![Crates.io](https://img.shields.io/crates/v/race-cli?logo=rust)](https://crates.io/crates/race-cli) | Command Line tools |
| race-facade | [![Crates.io](https://img.shields.io/crates/v/race-facade?logo=rust)](https://crates.io/crates/race-facade) | Chain replacement for quick test |
| race-transactor | [![Crates.io](https://img.shields.io/crates/v/race-transactor?logo=rust)](https://crates.io/crates/race-transactor) | Node Server |

## 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.0.27",
"version": "0.1.0",
"description": "A borsh implementation with decorator support",
"repository": {
"type": "git",
Expand Down
12 changes: 6 additions & 6 deletions js/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/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
"./sdk-facade",
"./borsh"
],
"version": "0.0.8"
"version": "0.1.0"
}
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.0.27",
"version": "0.1.0",
"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.0.27",
"version": "0.1.0",
"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.0.27",
"version": "0.1.0",
"description": "The Solana support for Race SDK",
"scripts": {
"test": "jest",
Expand Down

0 comments on commit 88c4547

Please sign in to comment.