Skip to content

Commit

Permalink
馃殌 Change version to 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
usatie committed Jul 29, 2018
1 parent 4384949 commit 4de89f3
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 3 deletions.
2 changes: 1 addition & 1 deletion BitcoinCashKit.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = 'BitcoinCashKit'
spec.version = '0.1.2'
spec.version = '0.2.0'
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
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.1.2</string>
<string>0.2.0</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down
2 changes: 1 addition & 1 deletion BitcoinCashKit/Peer.swift
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ public class Peer: NSObject, StreamDelegate {
address: "::ffff:127.0.0.1",
port: UInt16(port)),
nonce: 0,
userAgent: "/BitcoinCashKit:0.1.2/",
userAgent: "/BitcoinCashKit:0.2.0/",
startHeight: -1,
relay: false)
let payload = version.serialized()
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,19 @@

* None.


## 0.2.0 Release notes (2018-07-29)
First Version for BitcoinCashKit!
Bunch of changes included.

- Cashaddr
- Bech32
- BIP143 based Transaction Digest Algorithm
- Script Machine
- UnitTests
- Minor bug fixes
- etc...

## 0.1.2 Release notes (2018-02-10)

##### Breaking
Expand Down

0 comments on commit 4de89f3

Please sign in to comment.