Skip to content

Commit

Permalink
Update version to 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tbkka committed Oct 9, 2017
1 parent ab52701 commit 1dacc00
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 19 deletions.
16 changes: 3 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,6 @@

# Swift Protobuf

---
>
> Status: We are converging on a 1.0 release. The current 0.9.903 tag should
> meet all of our goals for 1.0. Please try it and let us know!
>
> (Note: There is a very small chance of further API breakage, which is why
> we're not yet calling this `1.0RC`.)
>
---

**Welcome to Swift Protobuf!**

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

```swift
dependencies: [
.Package(url: "https://github.com/apple/swift-protobuf.git", Version(0,9,903))
.Package(url: "https://github.com/apple/swift-protobuf.git", Version(1,0,0))
]
```

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

```ruby
pod 'SwiftProtobuf', '~> 0.9.903'
pod 'SwiftProtobuf', '~> 1.0.0'
```

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

```ruby
github "apple/swift-protobuf" "0.9.903"
github "apple/swift-protobuf" "1.0.0"
```

Run `carthage update` and drag `SwiftProtobuf.framework` into your Xcode.project.
Expand Down
6 changes: 3 additions & 3 deletions Sources/SwiftProtobuf/Version.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ import Foundation
// Expose version information about the library.
public struct Version {
/// Major version.
static public let major = 0
static public let major = 1
/// Minor version.
static public let minor = 9
static public let minor = 0
/// Revision number.
static public let revision = 906
static public let revision = 0

/// String form of the version number.
static public let versionString = "\(major).\(minor).\(revision)"
Expand Down
2 changes: 1 addition & 1 deletion SwiftProtobuf.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'SwiftProtobuf'
s.version = '0.9.906'
s.version = '1.0.0'
s.license = { :type => 'Apache 2.0', :file => 'LICENSE.txt' }
s.summary = 'Swift Protobuf code generator plugin and runtime library'
s.homepage = 'https://github.com/apple/swift-protobuf'
Expand Down
4 changes: 2 additions & 2 deletions SwiftProtobuf.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -2255,7 +2255,7 @@
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 0.9.906;
CURRENT_PROJECT_VERSION = 1.0.0;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
Expand Down Expand Up @@ -2309,7 +2309,7 @@
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
COMBINE_HIDPI_IMAGES = YES;
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 0.9.906;
CURRENT_PROJECT_VERSION = 1.0.0;
DEBUG_INFORMATION_FORMAT = dwarf;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
Expand Down

0 comments on commit 1dacc00

Please sign in to comment.