Skip to content

Commit

Permalink
2.4.0 release (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
Luke Gehorsam authored Jul 25, 2023
1 parent 29d40c4 commit 1ab2d53
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ All notable changes to this project are documented below.

The format is based on [keep a changelog](http://keepachangelog.com/) and this project uses [semantic versioning](http://semver.org/).

## [Unreleased]
## [2.4.0] - 2023-07-25

### Added
- Added ability to create a new Session from a Signing Key for server-to-server calls. See `Session.fromSigningKey()`.

## [2.3.0] - 2023-07-18

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ To build the codebase you will need to install these dependencies:
* Java Runtime Environment 1.8 through 1.11
* Java Development Kit 1.8 through 1.11

Invoke the Gradle Wrapper with `./gradlew nakamaJar` or `./gradlew satoriJar` and Gradle will install your dependencies over
Then run `./gradlew nakamaJar` or `./gradlew satoriJar` and Gradle will install your dependencies over
the network for you prior to building. It will then build the .jar files.

To run tests for Nakama, run `./gradlew nakamaTest -i`.
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ buildscript {
google()
}
dependencies {
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.9.4'
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.18'
}
}

plugins {
id 'com.github.johnrengelman.shadow' version '8.1.1'
id 'com.google.protobuf' version '0.9.4'
id 'com.google.protobuf' version '0.8.18'
id 'io.freefair.lombok' version '8.1.0'
//for distTar which is called when importing this SDK w/ JitPack
id 'distribution'
Expand All @@ -47,7 +47,7 @@ lombok {
}

group = 'com.github.heroiclabs'
version = '2.3.0'
version = '2.4.0'

sourceCompatibility = 1.8
targetCompatibility = 1.8
Expand Down

0 comments on commit 1ab2d53

Please sign in to comment.