Skip to content

Commit

Permalink
Nakama Swift v0.3.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
mofirouz committed Nov 8, 2017
1 parent c895409 commit f6ab358
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ 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]

## [0.3.0] - 2017-11-08
#### Changed
- Consistently use strings for all `Data` and `UUID` types.

Expand Down
2 changes: 1 addition & 1 deletion Nakama.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Pod::Spec.new do |s|
s.name = "Nakama"
s.version = "0.2.0"
s.version = "0.3.0"
s.summary = "Swift client for Nakama server."
s.description = <<-DESC
The official Swift client handles all communication in realtime with the server and is specifically optimized for iOS projects. It implements all features in the server and is compatible with Swift 3.1+.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ If your project uses Cocoapods, add the client as a dependency to your "Podfile"

```ruby
use_frameworks!
pod 'Nakama', '~> 0.2'
pod 'Nakama', '~> 0.3'
```

You can use the Swift package manager to add the code as a dependency for your project. Add the client as a dependency to your "Package.swift" file.
Expand All @@ -24,7 +24,7 @@ You can use the Swift package manager to add the code as a dependency for your p
let package = Package(
// ...
dependencies: [
.Package(url: "https://github.com/heroiclabs/nakama-swift.git", Version(0,2,0)),
.Package(url: "https://github.com/heroiclabs/nakama-swift.git", Version(0,3,0)),
]
)
```
Expand Down

0 comments on commit f6ab358

Please sign in to comment.