Skip to content

Commit c000550

Browse files
committed
🚀 v1.0.2 update
1 parent 6e1d76c commit c000550

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

BitcoinKit.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |spec|
22
spec.name = 'BitcoinKit'
3-
spec.version = '1.0.1'
3+
spec.version = '1.0.2'
44
spec.summary = 'Bitcoin(BCH/BTC) protocol toolkit for Swift'
55
spec.description = <<-DESC
66
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.

BitcoinKit/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.0.1</string>
18+
<string>1.0.2</string>
1919
<key>CFBundleVersion</key>
2020
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
<key>NSPrincipalClass</key>

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,13 @@
1212

1313
* None.
1414

15+
## 1.0.2 Release notes (2018-09-06)
16+
- Added Multisig Script Mock!
17+
- Added isCoinbase() in Transaction class by @federicobond
18+
- Fix some typo by @federicobond
19+
- Add HeadersMessage by @akifuj
20+
- Add open collective committers and backers by @monkeywithacupcake
21+
1522
## 1.0.1 Release notes (2018-08-17)
1623
- ScriptFactory is added!
1724

Sources/BitcoinKit/Networking/Peer.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ public class Peer: NSObject, StreamDelegate {
258258
address: "::ffff:127.0.0.1",
259259
port: UInt16(port)),
260260
nonce: 0,
261-
userAgent: "/BitcoinKit:1.0.1/",
261+
userAgent: "/BitcoinKit:1.0.2/",
262262
startHeight: -1,
263263
relay: false)
264264
let payload = version.serialized()

0 commit comments

Comments
 (0)