Skip to content

Commit

Permalink
Prepare release of version 0.1.3 (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
vovimayhem committed Aug 10, 2019
1 parent 7d10a7c commit 428a6b4
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 22 deletions.
8 changes: 0 additions & 8 deletions .semaphore/publish.yml → .semaphore/publishing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@ agent:

blocks:
- name: Publish to Rubygems
dependencies: [ ]
skip:
when: "tag !~ '^v(\d+)\.(\d+)\.(\d+)$'"
task:
env_vars:
- name: ICALIA_SDK_REPO
Expand Down Expand Up @@ -49,7 +46,6 @@ blocks:
- ci-compose run event_core gem build icalia-sdk-event-core

- export GEM_FILE=$(find . -name icalia-sdk-*.gem)
- echo ${GEM_FILE}

# Push it to rubygems:
- gem push ${GEM_FILE}
Expand All @@ -60,7 +56,6 @@ blocks:
- ci-compose run event_notification gem build icalia-sdk-event-notification

- export GEM_FILE=$(find . -name icalia-sdk-*.gem)
- echo ${GEM_FILE}

# Push it to rubygems:
- gem push ${GEM_FILE}
Expand All @@ -71,7 +66,6 @@ blocks:
- ci-compose run event_webhook gem build icalia-sdk-event-webhook

- export GEM_FILE=$(find . -name icalia-sdk-*.gem)
- echo ${GEM_FILE}

# Push it to rubygems:
- gem push ${GEM_FILE}
Expand All @@ -82,7 +76,6 @@ blocks:
- ci-compose run event_meta gem build icalia-sdk-event

- export GEM_FILE=$(find . -name icalia-sdk-*.gem)
- echo ${GEM_FILE}

# Push it to rubygems:
- gem push ${GEM_FILE}
Expand All @@ -93,7 +86,6 @@ blocks:
- ci-compose run sdk_meta gem build icalia-sdk

- export GEM_FILE=$(find . -name icalia-sdk-*.gem)
- echo ${GEM_FILE}

# Push it to rubygems:
- gem push ${GEM_FILE}
16 changes: 7 additions & 9 deletions .semaphore/semaphore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ agent:

blocks:
- name: Build Test Image
dependencies: []
task:
env_vars:
- name: ICALIA_SDK_REPO
Expand Down Expand Up @@ -47,7 +46,6 @@ blocks:
- ci-compose run image_manager tag-and-push libraries ${ICALIA_SDK_REPO}

- name: SDK Tests
dependencies: [ "Build Test Image" ]
task:
env_vars:
- name: ICALIA_SDK_REPO
Expand Down Expand Up @@ -115,11 +113,11 @@ blocks:

# Build the gem
- ci-compose run sdk_meta gem build icalia-sdk

promotions:
- name: Publish
pipeline_file: publish.yml
auto_promote_on:
- result: passed
branch:
- master # TODO: Add release branches once we get to 1.0
- name: Publish
pipeline_file: publishing.yml
auto_promote_on:
- result: passed
branch:
- ^refs\/tags\/v(\d+)\.(\d+)\.(\d+)(\.rc\d+)?$
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module Icalia
module Event
CORE_VERSION = '0.1.2'
CORE_VERSION = '0.1.3'
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module Icalia
module Event
NOTIFICATION_VERSION = '0.1.2'
NOTIFICATION_VERSION = '0.1.3'
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module Icalia
module Event
WEBHOOK_VERSION = '0.1.2'
WEBHOOK_VERSION = '0.1.3'
end
end
2 changes: 1 addition & 1 deletion gems/icalia-sdk-event/lib/icalia-sdk-event/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module Icalia
module Event
VERSION = '0.1.2'
VERSION = '0.1.3'
end
end
2 changes: 1 addition & 1 deletion gems/icalia-sdk/lib/icalia-sdk/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Icalia
VERSION = '0.1.2'
VERSION = '0.1.3'
end

0 comments on commit 428a6b4

Please sign in to comment.