Skip to content

Commit

Permalink
馃殌 Change version to 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
usatie committed Jul 30, 2018
1 parent be88d23 commit 2267629
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion BitcoinCashKit.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = 'BitcoinCashKit'
spec.version = '0.2.0'
spec.version = '0.2.1'
spec.summary = 'Bitcoin cash protocol toolkit for Swift'
spec.description = <<-DESC
The BitcoinCashKit library is a Swift implementation of the Bitcoin cash protocol. This library is a fork of Katsumi Kishikawa's original BitcoinKit library aimed at supporting the Bitcoin cash eco-system. It allows maintaining a wallet and sending/receiving transactions without needing a full blockchain node. It comes with a simple wallet app showing how to use it.
Expand Down
2 changes: 1 addition & 1 deletion BitcoinCashKit/Info.plist
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.2.0</string>
<string>0.2.1</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down
2 changes: 1 addition & 1 deletion BitcoinCashKit/Peer.swift
Expand Up @@ -258,7 +258,7 @@ public class Peer: NSObject, StreamDelegate {
address: "::ffff:127.0.0.1",
port: UInt16(port)),
nonce: 0,
userAgent: "/BitcoinCashKit:0.2.0/",
userAgent: "/BitcoinCashKit:0.2.1/",
startHeight: -1,
relay: false)
let payload = version.serialized()
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Expand Up @@ -12,6 +12,11 @@

* None.

## 0.2.1 Release notes (2018-07-30)
- Fix Carthage install problem
- Add OP_CODEs
- Refactor ScriptMachine
- etc...

## 0.2.0 Release notes (2018-07-29)
First Version for BitcoinCashKit!
Expand Down

0 comments on commit 2267629

Please sign in to comment.