Skip to content

Commit

Permalink
Bump version to 1.1.0-pre2 (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
kylefleming authored May 11, 2021
1 parent f2d864a commit d28396d
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 11 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.1.0-pre2] - 2021-05-10

## [1.0.0] - 2021-04-05

## 1.0.0-rc1 - 2021-03-15

[1.1.0-pre2]: https://github.com/mobilecoinofficial/MobileCoin-Swift/compare/1.0.0...1.1.0-pre2
[1.0.0]: https://github.com/mobilecoinofficial/MobileCoin-Swift/compare/1.0.0-rc1...1.0.0
14 changes: 7 additions & 7 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ PODS:
- gRPC-Swift (~> 1.0.0)
- SwiftProtobuf (~> 1.5)
- Logging (1.4.0)
- MobileCoin (1.0.0):
- MobileCoin/Core (= 1.0.0)
- MobileCoin/Core (1.0.0):
- MobileCoin (1.1.0-pre2):
- MobileCoin/Core (= 1.1.0-pre2)
- MobileCoin/Core (1.1.0-pre2):
- gRPC-Swift (~> 1.0)
- LibMobileCoin (~> 1.1-pre)
- Logging (~> 1.4)
Expand All @@ -33,7 +33,7 @@ PODS:
- SwiftNIOHPACK (~> 1.16)
- SwiftNIOHTTP1 (~> 2.18)
- SwiftProtobuf (~> 1.5)
- MobileCoin/Core/IntegrationTests (1.0.0):
- MobileCoin/Core/IntegrationTests (1.1.0-pre2):
- gRPC-Swift (~> 1.0)
- LibMobileCoin (~> 1.1-pre)
- Logging (~> 1.4)
Expand All @@ -42,7 +42,7 @@ PODS:
- SwiftNIOHPACK (~> 1.16)
- SwiftNIOHTTP1 (~> 2.18)
- SwiftProtobuf (~> 1.5)
- MobileCoin/Core/PerformanceTests (1.0.0):
- MobileCoin/Core/PerformanceTests (1.1.0-pre2):
- gRPC-Swift (~> 1.0)
- LibMobileCoin (~> 1.1-pre)
- Logging (~> 1.4)
Expand All @@ -51,7 +51,7 @@ PODS:
- SwiftNIOHPACK (~> 1.16)
- SwiftNIOHTTP1 (~> 2.18)
- SwiftProtobuf (~> 1.5)
- MobileCoin/Core/Tests (1.0.0):
- MobileCoin/Core/Tests (1.1.0-pre2):
- gRPC-Swift (~> 1.0)
- LibMobileCoin (~> 1.1-pre)
- Logging (~> 1.4)
Expand Down Expand Up @@ -158,7 +158,7 @@ SPEC CHECKSUMS:
Keys: a576f4c9c1c641ca913a959a9c62ed3f215a8de9
LibMobileCoin: c045425860c60037c34a8b84720732a4e0c16090
Logging: beeb016c9c80cf77042d62e83495816847ef108b
MobileCoin: 7f9e062191030d23be83e40979ebcd3e46b8b1f4
MobileCoin: 04b6d95e868a6d5324e049005ecbf38815729348
SwiftLint: 99f82d07b837b942dd563c668de129a03fc3fb52
SwiftNIO: 81d33ce8c500b7e41b6cdde5f2f12330b9750219
SwiftNIOConcurrencyHelpers: 23fc68bac541a465162d7225d2c743edd2f1012c
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ publish: tag-release publish-podspec
.PHONY: tag-release
tag-release:
VERSION="$$(bundle exec pod ipc spec MobileCoin.podspec | jq -r '.version')" && \
git tag "$$VERSION" && \
git push [email protected]:mobilecoinofficial/MobileCoin-Swift.git "refs/tags/$$VERSION"
git tag "v$$VERSION" && \
git push [email protected]:mobilecoinofficial/MobileCoin-Swift.git "refs/tags/v$$VERSION"

# MobileCoin pod

Expand Down
4 changes: 2 additions & 2 deletions MobileCoin.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #

s.name = "MobileCoin"
s.version = "1.0.0"
s.version = "1.1.0-pre2"
s.summary = "A library for communicating with MobileCoin network"

s.author = "MobileCoin"
s.homepage = "https://www.mobilecoin.com/"

s.license = { :type => "GPLv3" }

s.source = { :git => "https://github.com/mobilecoinofficial/MobileCoin-Swift.git", :tag => "#{s.version}" }
s.source = { :git => "https://github.com/mobilecoinofficial/MobileCoin-Swift.git", :tag => "v#{s.version}" }


# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
Expand Down

0 comments on commit d28396d

Please sign in to comment.