gitlab-chronic 0.10.3 → 0.10.4

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: 92fc84f7462613e5b2ce67558d43d87f9a280526ddae7b02d5e9a2aeb56cace3
4
- data.tar.gz: 411c1b9c6f2fb5d09657d1a1b971ad53c9d7ba3856898bde79ba82f9306a424b
3
+ metadata.gz: f25bcc92f81d5633ffe7fa39e82b9997b7f0a88e4edfdaf1ad6a64b590c620f1
4
+ data.tar.gz: 960db7245d7a8a44dcf7512d66a120c5f0ce4c2cbe57b04a7b2f56e54a91b525
5
5
  SHA512:
6
- metadata.gz: af07bbe9c23cd8f2ddb54fcfc2a1713291ea5b3cd48e880e498eb38f60d385544f23fd6861bcf98f88a1f7d94634d5a65cf09a2b6d356b4e55af53259dcd5bf6
7
- data.tar.gz: bf5bcf7e44f77c801e3c358da2b4c89b869a8e12c1acbf89022b24a10e200056549c004775f284c0dd014ab8883b6f015466d16410bf11cf7d4aaabb1cea9edd
6
+ metadata.gz: ae2b083127378b81b41e61322f4f61eddf41c3896ce064e3587c6df836cfc045395ba41ada4892b2c60ff12ca6ace925ee664820c9ac389db96da61a9e3b3dba
7
+ data.tar.gz: c591716552c0215495d942059fc3d8fa43eb4346b7ff1d5bc1da2c80ea07fecd63d8edc8093252bc536a2e85f3dea2bdaa7452c6d2ea9f82672bf39a9ea7b197
data/HISTORY.md CHANGED
@@ -1,11 +1,15 @@
1
- # --- Begin gitlab-chronic changes ---
1
+ ## --- Begin gitlab-chronic changes ---
2
+
3
+ # 0.10.4 / 2019-11-24
4
+
5
+ * Rename chronic -> gitlab-chronic (https://gitlab.com/gitlab-org/gitlab-chronic/merge_requests/5)
2
6
 
3
7
  # 0.10.3 / 2019-11-23
4
8
 
5
9
  * Fix Daylight Savings parsing (https://gitlab.com/gitlab-org/gitlab-chronic/merge_requests/3)
6
10
  * Add .gitlab-ci.yml (https://gitlab.com/gitlab-org/gitlab-chronic/merge_requests/1)
7
11
 
8
- # --- End gitlab-chronic changes ---
12
+ ## --- End gitlab-chronic changes ---
9
13
 
10
14
  # 0.10.2 / 2013-09-09
11
15
 
data/Rakefile CHANGED
@@ -6,7 +6,7 @@ def version
6
6
  end
7
7
 
8
8
  def do_test
9
- require 'chronic'
9
+ require 'gitlab-chronic'
10
10
  $:.unshift './test'
11
11
  Dir.glob('test/test_*.rb').each { |t| require File.basename(t) }
12
12
  end
@@ -1,3 +1,3 @@
1
1
  module Chronic
2
- VERSION = '0.10.3'
2
+ VERSION = '0.10.4'
3
3
  end
File without changes
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gitlab-chronic
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.3
4
+ version: 0.10.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tom Preston-Werner
@@ -101,7 +101,6 @@ files:
101
101
  - README.md
102
102
  - Rakefile
103
103
  - chronic.gemspec
104
- - lib/chronic.rb
105
104
  - lib/chronic/date.rb
106
105
  - lib/chronic/definition.rb
107
106
  - lib/chronic/dictionary.rb
@@ -142,6 +141,7 @@ files:
142
141
  - lib/chronic/token.rb
143
142
  - lib/chronic/tokenizer.rb
144
143
  - lib/chronic/version.rb
144
+ - lib/gitlab-chronic.rb
145
145
  - test/helper.rb
146
146
  - test/test_chronic.rb
147
147
  - test/test_daylight_savings.rb