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.3 (#113)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdno committed Jul 13, 2021
1 parent b29d1d2 commit e73bc95
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/markdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
uses: actions/checkout@v2

- name: markdownlint-cli
uses: nosborn/github-action-markdown-cli@v1.1.1
uses: nosborn/github-action-markdown-cli@v2.0.0
with:
files: "**.md"

Expand Down
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
<!-- markdownlint-disable-file MD024 -->

# Changelog

All notable changes to this project will be documented in this file.
Expand All @@ -7,6 +9,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.3] - 2021-07-13

### Changed

- Updated [tonic](https://github.com/hyperium/tonic) to 0.5.0

## [0.1.2] - 2021-06-23

### Changed

- Rename gRPC service `Lunaria` to `LunariaService`
Expand All @@ -23,6 +33,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Create an endpoint that returns the version of Lunaria

[unreleased]: https://github.com/playlunaria/lunaria-api/compare/v0.1.1...HEAD
[unreleased]: https://github.com/playlunaria/lunaria-api/compare/v0.1.3...HEAD
[0.1.3]: https://github.com/playlunaria/lunaria-api/releases/tag/v0.1.3
[0.1.2]: https://github.com/playlunaria/lunaria-api/releases/tag/v0.1.2
[0.1.1]: https://github.com/playlunaria/lunaria-api/releases/tag/v0.1.1
[0.1.0]: https://github.com/playlunaria/lunaria-api/releases/tag/v0.1.0
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.2",
"version": "0.1.3",
"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(2);
expect(version.getPatch()).toEqual(3);
} 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.2"
version = "0.1.3"
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.2"
lunaria-api = "0.1.3"
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.2"
//! lunaria-api = "0.1.3"
//! 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!(2, version.patch);
//! assert_eq!(3, 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.2"
version = "0.1.3"
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.2", features = ["server"] }
lunaria-api = { path = "../languages/rust", version = "0.1.3", features = ["server"] }

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

0 comments on commit e73bc95

Please sign in to comment.