botspec 0.4.21 → 0.4.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8bf4354043a25b37893deb663e45f5f09badbbe1
4
- data.tar.gz: 3146d985fc51c1b4de75ecf58a8470d7984561d0
3
+ metadata.gz: 33bb53dcf21e61295b03083fbf16e65a4bc19125
4
+ data.tar.gz: 80aa9971e856dd487d39896ac1d285c6f058f6b2
5
5
  SHA512:
6
- metadata.gz: 6382b86df66985a12257b21a95ac332882b49d39f2d33d10de421655e69cb225500eca212ae37b3983751f59427117e46b97aefb19a50a76f988e5eaa3b5e45e
7
- data.tar.gz: 26529e45d85643165da31ce43daff705e13c78270893c03435a940d915253ef52f84663ce4385891d82f5ad963ae55c38c2fb54af8f101c675f099b664bbe925
6
+ metadata.gz: 0aea5e9daee376a9c123b1bef14a3e2c1428962e8686ff7f20cb95e1576fef2eabde979694daa18478f1afd67e6fe14f7eaa2008b3748fd208d61997fde45474
7
+ data.tar.gz: 8f585b900f92d3b1bbb0650c54300b7050e4ab768f5a03b6ff52d72d3ad969438cc7f4773fcdd909d2a03e73f0406ddd2dbef0366bde30642c5a473ee3c7980d
data/.circleci/config.yml CHANGED
@@ -57,6 +57,33 @@ jobs:
57
57
  name: Docker Release
58
58
  command: curl --data build=true -X POST https://cloud.docker.com/api/build/v1/source/06910a8b-39e1-4929-b55c-4111c3216452/trigger/24b37a19-bd4c-461d-ba80-3d9f1b0704bd/call/
59
59
 
60
+ bump:
61
+ docker:
62
+ # specify the version you desire here
63
+ - image: circleci/ruby:2.4.1-node-browsers
64
+
65
+ working_directory: ~/repo
66
+
67
+ steps:
68
+ - add_ssh_keys:
69
+ fingerprints:
70
+ - "4c:60:84:77:2a:a6:e5:1a:4c:7f:c3:fc:dd:4c:78:c4"
71
+ - checkout
72
+
73
+ - run:
74
+ name: Gem Release
75
+ command: |
76
+ bundle install --jobs=4 --retry=3 --path vendor/bundle
77
+ git config user.email "elliottmurray@gmail.com"
78
+ git config user.name "Circleci"
79
+ git config --global push.default simple
80
+ git push --set-upstream origin $CIRCLE_BRANCH
81
+ .circleci/setup-rubygems.sh
82
+
83
+ script/patch.sh
84
+
85
+
86
+
60
87
  workflows:
61
88
  version: 2
62
89
  build_and_publish:
@@ -66,7 +93,18 @@ workflows:
66
93
  requires:
67
94
  - build
68
95
  filters:
96
+ branches:
97
+ only:
98
+ - master
69
99
  tags:
70
100
  only: /^v.*/
71
-
72
-
101
+ - bump:
102
+ requires:
103
+ - build
104
+ filters:
105
+ branches:
106
+ only:
107
+ - master
108
+ tags:
109
+ ignore:
110
+ - /^v.*/
@@ -1,3 +1,3 @@
1
1
  module Botspec
2
- VERSION = "0.4.21"
2
+ VERSION = "0.4.22"
3
3
  end
data/script/release.sh CHANGED
@@ -8,7 +8,7 @@ bundle exec bump ${MODE} --no-commit
8
8
  #bundle exec appraisal update
9
9
  bundle exec rake generate_changelog
10
10
  git add lib/botspec/version.rb CHANGELOG.md
11
- git commit -m "chore(release) [ci skip]: version $(ruby -r ./lib/botspec/version.rb -e "puts Botspec::VERSION")" && git push
11
+ git commit -m "chore(release): version $(ruby -r ./lib/botspec/version.rb -e "puts Botspec::VERSION")" && git push
12
12
  bundle exec rake release
13
13
 
14
14
  # Dockerhub release
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: botspec
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.21
4
+ version: 0.4.22
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elliott Murray