From 2267629e7027a7532bde27b05d3d18348b2e233c Mon Sep 17 00:00:00 2001 From: Shun Usami Date: Mon, 30 Jul 2018 21:23:11 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20Change=20version=20to=200.2.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- BitcoinCashKit.podspec | 2 +- BitcoinCashKit/Info.plist | 2 +- BitcoinCashKit/Peer.swift | 2 +- CHANGELOG.md | 5 +++++ 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/BitcoinCashKit.podspec b/BitcoinCashKit.podspec index c8caadc2..aad12f30 100644 --- a/BitcoinCashKit.podspec +++ b/BitcoinCashKit.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |spec| spec.name = 'BitcoinCashKit' - spec.version = '0.2.0' + spec.version = '0.2.1' 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. diff --git a/BitcoinCashKit/Info.plist b/BitcoinCashKit/Info.plist index 23d96cb4..f3f69d3a 100644 --- a/BitcoinCashKit/Info.plist +++ b/BitcoinCashKit/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 0.2.0 + 0.2.1 CFBundleVersion $(CURRENT_PROJECT_VERSION) NSPrincipalClass diff --git a/BitcoinCashKit/Peer.swift b/BitcoinCashKit/Peer.swift index 079bf3b8..d133a34c 100644 --- a/BitcoinCashKit/Peer.swift +++ b/BitcoinCashKit/Peer.swift @@ -258,7 +258,7 @@ public class Peer: NSObject, StreamDelegate { address: "::ffff:127.0.0.1", port: UInt16(port)), nonce: 0, - userAgent: "/BitcoinCashKit:0.2.0/", + userAgent: "/BitcoinCashKit:0.2.1/", startHeight: -1, relay: false) let payload = version.serialized() diff --git a/CHANGELOG.md b/CHANGELOG.md index da9fc085..ce08356e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,11 @@ * None. +## 0.2.1 Release notes (2018-07-30) +- Fix Carthage install problem +- Add OP_CODEs +- Refactor ScriptMachine +- etc... ## 0.2.0 Release notes (2018-07-29) First Version for BitcoinCashKit!