Skip to content

Commit

Permalink
🚀 v1.0.1 update
Browse files Browse the repository at this point in the history
  • Loading branch information
usatie committed Aug 17, 2018
1 parent f428d93 commit 65a88ed
Show file tree
Hide file tree
Showing 4 changed files with 6 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.0'
spec.version = '1.0.1'
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.0</string>
<string>1.0.1</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@

* None.

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

## 1.0.0 Release notes (2018-08-17)
- First major release!
- All OP_CODEs are available now!
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.0/",
userAgent: "/BitcoinKit:1.0.1/",
startHeight: -1,
relay: false)
let payload = version.serialized()
Expand Down

0 comments on commit 65a88ed

Please sign in to comment.