Skip to content
This repository has been archived by the owner on Nov 21, 2021. It is now read-only.

Commit

Permalink
Release 0.1.2 (#105)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdno authored Jun 23, 2021
1 parent 782fbb1 commit 251f8c0
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion languages/node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lunaria-api",
"version": "0.1.1",
"version": "0.1.2",
"description": "API client for the video game Lunaria",
"keywords": [
"api",
Expand Down
2 changes: 1 addition & 1 deletion languages/node/test/version.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ test("getVersion returns Lunaria's version", async () => {
if (version !== undefined) {
expect(version.getMajor()).toEqual(0);
expect(version.getMinor()).toEqual(1);
expect(version.getPatch()).toEqual(1);
expect(version.getPatch()).toEqual(2);
} else {
expect(version).toBeDefined();
}
Expand Down
2 changes: 1 addition & 1 deletion languages/rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lunaria-api"
version = "0.1.1"
version = "0.1.2"
authors = [
"Lunaria Contributors",
"Jan David Nose <jandavid@playlunaria.com>",
Expand Down
2 changes: 1 addition & 1 deletion languages/rust/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ an async runtime like [`tokio`][tokio].

```toml
[dependencies]
lunaria-api = "0.1.1"
lunaria-api = "0.1.2"
tokio = { version = "0.2.22", features = ["macros", "rt-threaded"] }
tonic = "0.3.1"
```
Expand Down
4 changes: 2 additions & 2 deletions languages/rust/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
//!
//! ```toml
//! [dependencies]
//! lunaria-api = "0.1.1"
//! lunaria-api = "0.1.2"
//! tokio = { version = "0.2.22", features = ["macros", "rt-threaded"] }
//! tonic = "0.3.1"
//! ```
Expand Down Expand Up @@ -50,7 +50,7 @@
//! if let Some(version) = version_response.version {
//! assert_eq!(0, version.major);
//! assert_eq!(1, version.minor);
//! assert_eq!(1, version.patch);
//! assert_eq!(2, version.patch);
//! }
//!
//! Ok(())
Expand Down
4 changes: 2 additions & 2 deletions test-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test-server"
version = "0.1.1"
version = "0.1.2"
authors = ["Jan David <jandavid@playlunaria.com>"]
edition = "2018"
publish = false
Expand All @@ -9,7 +9,7 @@ publish = false
# https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
lunaria-api = { path = "../languages/rust", version = "0.1.1", features = ["server"] }
lunaria-api = { path = "../languages/rust", version = "0.1.2", features = ["server"] }

tokio = { version = "1.7.1", features = ["full"] }
tonic = "0.4.3"

0 comments on commit 251f8c0

Please sign in to comment.