Skip to content

Commit 7a14098

Browse files
committed
Bump versions to 1.0.1
1 parent 075e7e0 commit 7a14098

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ If you're using CocoaPods, add this to your `Podfile` adjusting the `:tag` to
191191
match the `[tag_name]` you used to build the plugin above:
192192

193193
```ruby
194-
pod 'SwiftProtobuf', '~> 1.0.0'
194+
pod 'SwiftProtobuf', '~> 1.0.1'
195195
```
196196

197197
And run `pod install`.
@@ -203,7 +203,7 @@ And run `pod install`.
203203
If you're using Carthage, add this to your `Cartfile` but adjust the tag to match the `[tag_name]` you used to build the plugin above:
204204

205205
```ruby
206-
github "apple/swift-protobuf" "1.0.0"
206+
github "apple/swift-protobuf" "1.0.1"
207207
```
208208

209209
Run `carthage update` and drag `SwiftProtobuf.framework` into your Xcode.project.

Sources/SwiftProtobuf/Version.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public struct Version {
2121
/// Minor version.
2222
static public let minor = 0
2323
/// Revision number.
24-
static public let revision = 0
24+
static public let revision = 1
2525

2626
/// String form of the version number.
2727
static public let versionString = "\(major).\(minor).\(revision)"

SwiftProtobuf.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'SwiftProtobuf'
3-
s.version = '1.0.0'
3+
s.version = '1.0.1'
44
s.license = { :type => 'Apache 2.0', :file => 'LICENSE.txt' }
55
s.summary = 'Swift Protobuf code generator plugin and runtime library'
66
s.homepage = 'https://github.com/apple/swift-protobuf'

SwiftProtobuf.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2255,7 +2255,7 @@
22552255
CLANG_WARN_UNREACHABLE_CODE = YES;
22562256
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
22572257
COMBINE_HIDPI_IMAGES = YES;
2258-
CURRENT_PROJECT_VERSION = 1.0.0;
2258+
CURRENT_PROJECT_VERSION = 1.0.1;
22592259
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
22602260
DYLIB_CURRENT_VERSION = 1;
22612261
DYLIB_INSTALL_NAME_BASE = "@rpath";
@@ -2309,7 +2309,7 @@
23092309
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
23102310
COMBINE_HIDPI_IMAGES = YES;
23112311
COPY_PHASE_STRIP = NO;
2312-
CURRENT_PROJECT_VERSION = 1.0.0;
2312+
CURRENT_PROJECT_VERSION = 1.0.1;
23132313
DEBUG_INFORMATION_FORMAT = dwarf;
23142314
DYLIB_CURRENT_VERSION = 1;
23152315
DYLIB_INSTALL_NAME_BASE = "@rpath";

0 commit comments

Comments
 (0)