diff --git a/BitcoinKit.podspec b/BitcoinKit.podspec index 86e4a205..fdff514c 100644 --- a/BitcoinKit.podspec +++ b/BitcoinKit.podspec @@ -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. diff --git a/BitcoinKit/Info.plist b/BitcoinKit/Info.plist index 139f35e3..0ecaf500 100644 --- a/BitcoinKit/Info.plist +++ b/BitcoinKit/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 1.0.1 + 1.0.2 CFBundleVersion $(CURRENT_PROJECT_VERSION) NSPrincipalClass diff --git a/CHANGELOG.md b/CHANGELOG.md index f60111d3..414e358c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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! diff --git a/Sources/BitcoinKit/Networking/Peer.swift b/Sources/BitcoinKit/Networking/Peer.swift index 1dda8db0..335220dd 100644 --- a/Sources/BitcoinKit/Networking/Peer.swift +++ b/Sources/BitcoinKit/Networking/Peer.swift @@ -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()