oura 0.1.6 → 0.1.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6bb64991b4c93dd5d9c57825ebed7359e86986e2bc7924b92fc2d71c14eee92a
4
- data.tar.gz: dc2399633a4234fcef41d15836e38833dbd6f31dc21461ea9255f7946f11c9ec
3
+ metadata.gz: 8d0461c16288896b2ed569b92aed2d684fe47fc80903e320c25d613880bc9c56
4
+ data.tar.gz: 9efa9d4179dfe46ca4c1b878a4541852aa88be9a27359a90201c9ce87053904b
5
5
  SHA512:
6
- metadata.gz: 0fa640e2f36abcbddab23a88388d7e3e4767f9c3aca5273e0e3e738945925ed03b05fc9eb2be741169a1a91dcff7d59bd1a3164076ab298a9f4dae54cabf971f
7
- data.tar.gz: 2be56751ef9e3819432eb7e6548f091ae4da59289edcf0bc6ca8a2e668c0b680c094255dfa9853611c22927cd74c5867d8820d6a0a5c1b77f9345c6b33ed3bcb
6
+ metadata.gz: eda67edf335fa657497888a2a9f128ceba6a46c2ec63141b26859c8c6b0d3069cdfd1e7c8442d165c33ced110d76f052fcb0b16cd2ec745d3b841a456524ce04
7
+ data.tar.gz: 0ec58466bf8b0e98661df5c9cae3d5cc0882b0f42a66ac47a8cc36cd9f2d33e72218b2aaf1418b20cdb2e08660004ec736ee7c768afde8fc2d3e610776f1f854
@@ -96,8 +96,16 @@ jobs:
96
96
  executor: default_container
97
97
  steps:
98
98
  - checkout
99
+ - run:
100
+ name: shared tag
101
+ command: |
102
+ old_tag=$(git describe --tags @^ | tr "-" " " | awk '{print $1}')
103
+ new_tag=$(git describe --tags)
104
+ title_link="https://github.com/paveg/oura/${old_tag}...${new_tag}"
105
+ echo "export TITLE_LINK=$title_link" >> $BASH_ENV
106
+ echo "export NTF_MSG=\":+1: Bump up $old_tag to $new_tag\"" >> $BASH_ENV
99
107
  - notify-slack:
100
- message: ":+1: released"
108
+ message: $NTF_MSG
101
109
  author_link: $TITLE_LINK
102
110
  workflows:
103
111
  integration:
@@ -1,6 +1,14 @@
1
1
  Change Log
2
2
  ==========
3
3
 
4
+ ## v0.1.7
5
+
6
+ - Fix up Slack notification configuration
7
+
8
+ ## v0.1.6
9
+
10
+ - Add Slack notification from own workspace
11
+
4
12
  ## v0.1.5
5
13
 
6
14
  - Add RSpecs
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Oura
4
- VERSION = '0.1.6'
4
+ VERSION = '0.1.7'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: oura
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryota Ikezawa