Skip to content

Commit

Permalink
🚀 v1.0.2 update
Browse files Browse the repository at this point in the history
  • Loading branch information
usatie committed Sep 6, 2018
1 parent 6e1d76c commit c000550
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion BitcoinKit.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = 'BitcoinKit'
spec.version = '1.0.1'
spec.version = '1.0.2'
spec.summary = 'Bitcoin(BCH/BTC) protocol toolkit for Swift'
spec.description = <<-DESC
The BitcoinKit library is a Swift implementation of the Bitcoin(BCH/BTC) protocol. This library was originally made by Katsumi Kishikawa, and now is maintained by Yenom Inc. 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 BitcoinKit/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>1.0.1</string>
<string>1.0.2</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@

* None.

## 1.0.2 Release notes (2018-09-06)
- Added Multisig Script Mock!
- Added isCoinbase() in Transaction class by @federicobond
- Fix some typo by @federicobond
- Add HeadersMessage by @akifuj
- Add open collective committers and backers by @monkeywithacupcake

## 1.0.1 Release notes (2018-08-17)
- ScriptFactory is added!

Expand Down
2 changes: 1 addition & 1 deletion Sources/BitcoinKit/Networking/Peer.swift
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ public class Peer: NSObject, StreamDelegate {
address: "::ffff:127.0.0.1",
port: UInt16(port)),
nonce: 0,
userAgent: "/BitcoinKit:1.0.1/",
userAgent: "/BitcoinKit:1.0.2/",
startHeight: -1,
relay: false)
let payload = version.serialized()
Expand Down

0 comments on commit c000550

Please sign in to comment.