Skip to content

Commit 1dacc00

Browse files
committed
Update version to 1.0.0
1 parent ab52701 commit 1dacc00

File tree

4 files changed

+9
-19
lines changed

4 files changed

+9
-19
lines changed

README.md

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,6 @@
22

33
# Swift Protobuf
44

5-
---
6-
>
7-
> Status: We are converging on a 1.0 release. The current 0.9.903 tag should
8-
> meet all of our goals for 1.0. Please try it and let us know!
9-
>
10-
> (Note: There is a very small chance of further API breakage, which is why
11-
> we're not yet calling this `1.0RC`.)
12-
>
13-
---
14-
155
**Welcome to Swift Protobuf!**
166

177
[Apple's Swift programming language](https://swift.org/) is a perfect
@@ -182,7 +172,7 @@ you used to build the plugin above:
182172

183173
```swift
184174
dependencies: [
185-
.Package(url: "https://github.com/apple/swift-protobuf.git", Version(0,9,903))
175+
.Package(url: "https://github.com/apple/swift-protobuf.git", Version(1,0,0))
186176
]
187177
```
188178

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

203193
```ruby
204-
pod 'SwiftProtobuf', '~> 0.9.903'
194+
pod 'SwiftProtobuf', '~> 1.0.0'
205195
```
206196

207197
And run `pod install`.
@@ -213,7 +203,7 @@ And run `pod install`.
213203
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:
214204

215205
```ruby
216-
github "apple/swift-protobuf" "0.9.903"
206+
github "apple/swift-protobuf" "1.0.0"
217207
```
218208

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

Sources/SwiftProtobuf/Version.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ import Foundation
1717
// Expose version information about the library.
1818
public struct Version {
1919
/// Major version.
20-
static public let major = 0
20+
static public let major = 1
2121
/// Minor version.
22-
static public let minor = 9
22+
static public let minor = 0
2323
/// Revision number.
24-
static public let revision = 906
24+
static public let revision = 0
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.906'
3+
s.version = '1.0.0'
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 = 0.9.906;
2258+
CURRENT_PROJECT_VERSION = 1.0.0;
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 = 0.9.906;
2312+
CURRENT_PROJECT_VERSION = 1.0.0;
23132313
DEBUG_INFORMATION_FORMAT = dwarf;
23142314
DYLIB_CURRENT_VERSION = 1;
23152315
DYLIB_INSTALL_NAME_BASE = "@rpath";

0 commit comments

Comments
 (0)