Skip to content

Commit 74061f9

Browse files
committed
Version = 0.9.902
1 parent f6e372e commit 74061f9

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
---
66

7-
> Status: We are converging on a 1.0 release. The current 0.9.901 tag should
7+
> Status: We are converging on a 1.0 release. The current 0.9.902 tag should
88
> meet all of our goals for 1.0. Please try it and let us know!
99
1010
> (Note: There is a small chance of further API breakage, which is why
@@ -131,7 +131,7 @@ you used to build the plugin above:
131131

132132
```swift
133133
dependencies: [
134-
.Package(url: "https://github.com/apple/swift-protobuf.git", Version(0,9,901))
134+
.Package(url: "https://github.com/apple/swift-protobuf.git", Version(0,9,902))
135135
]
136136
```
137137

@@ -150,7 +150,7 @@ If you're using CocoaPods, add this to your `Podfile` adjusting the `:tag` to
150150
match the `[tag_name]` you used to build the plugin above:
151151

152152
```ruby
153-
pod 'SwiftProtobuf', git: 'https://github.com/apple/swift-protobuf.git', :tag => '0.9.901'
153+
pod 'SwiftProtobuf', git: 'https://github.com/apple/swift-protobuf.git', :tag => '0.9.902'
154154
```
155155

156156
And run `pod install`.
@@ -162,7 +162,7 @@ And run `pod install`.
162162
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:
163163

164164
```ruby
165-
github "apple/swift-protobuf" "0.9.901"
165+
github "apple/swift-protobuf" "0.9.902"
166166
```
167167

168168
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 = 9
2323
/// Revision number.
24-
static public let revision = 901
24+
static public let revision = 902
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 = '0.9.901'
3+
s.version = '0.9.902'
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
@@ -2177,7 +2177,7 @@
21772177
CLANG_WARN_UNREACHABLE_CODE = YES;
21782178
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
21792179
COMBINE_HIDPI_IMAGES = YES;
2180-
CURRENT_PROJECT_VERSION = 0.9.901;
2180+
CURRENT_PROJECT_VERSION = 0.9.902;
21812181
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
21822182
DYLIB_CURRENT_VERSION = 1;
21832183
DYLIB_INSTALL_NAME_BASE = "@rpath";
@@ -2225,7 +2225,7 @@
22252225
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
22262226
COMBINE_HIDPI_IMAGES = YES;
22272227
COPY_PHASE_STRIP = NO;
2228-
CURRENT_PROJECT_VERSION = 0.9.901;
2228+
CURRENT_PROJECT_VERSION = 0.9.902;
22292229
DEBUG_INFORMATION_FORMAT = dwarf;
22302230
DYLIB_CURRENT_VERSION = 1;
22312231
DYLIB_INSTALL_NAME_BASE = "@rpath";

0 commit comments

Comments
 (0)