uuid4 1.4.0 → 1.4.2

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
  SHA256:
3
- metadata.gz: 99f0b79a3986a53e256f938361c66ff0428f4566f943d7ebcb3270c59b48e9c2
4
- data.tar.gz: a9ed439387f5ef681d6c2bc82358ded1c53c961062f3545d1504cb90223411d7
3
+ metadata.gz: b663c08e79aad2b1912a060c2335b28d863e6227076bbbee894b8f47b7431f8f
4
+ data.tar.gz: 3f1497f3e005c3c7ce6628f36e443ae6a0fb5a4ab84e865615a22bad8d65f372
5
5
  SHA512:
6
- metadata.gz: fb757b4a2cc3424d3451799ffd1f8f5221820cf5c32e16191ab9b3f082f9896ac8f3f0e2a3813d48429763eae0dbf6359547a2f77f451b24641747960eadeef3
7
- data.tar.gz: 520141a2ca687913081ecbc86d822742bda9f71d2a7abbe2e2585fcbbbee98d2db710859b12387e110c26cdd38ed8d025aa646a088d310aa501c966cabf99888
6
+ metadata.gz: 5f9d2aae4aca477d8e8d9cfac7ef3c90566d918015c74eb654a9b3a97936f7f0489bcac8f986293887ee0c7d7aba2ac90b2f1509f91ae2df8073eb607e3531de
7
+ data.tar.gz: 7f8e9ab555be81113037255b0e541f57d1bde21d6a848249fe63b8c6c1c4b87172ba05a9bc842e291dacbf9fd2b366d8341ee1fae221e77c0169acfd28d2d39d
@@ -0,0 +1,38 @@
1
+ # vim: ft=yaml
2
+
3
+ name: release
4
+
5
+ on:
6
+ push:
7
+ tags:
8
+ - v*
9
+
10
+ jobs:
11
+ rubygems:
12
+ if: github.repository == 'jgraichen/uuid4'
13
+ runs-on: ubuntu-24.04
14
+
15
+ permissions:
16
+ contents: write
17
+ id-token: write
18
+
19
+ env:
20
+ BUNDLE_JOBS: 4
21
+ BUNDLE_RETRY: 10
22
+ BUNDLE_WITHOUT: development test
23
+
24
+ steps:
25
+ - uses: actions/checkout@v4
26
+
27
+ - uses: ruby/setup-ruby@v1
28
+ with:
29
+ ruby-version: ruby
30
+ bundler-cache: true
31
+
32
+ - uses: rubygems/release-gem@v1
33
+
34
+ - uses: taiki-e/create-gh-release-action@v1
35
+ with:
36
+ changelog: CHANGELOG.md
37
+ draft: true
38
+ token: ${{ secrets.GITHUB_TOKEN }}
@@ -4,12 +4,14 @@ on: push
4
4
  jobs:
5
5
  rspec:
6
6
  name: "ruby-${{ matrix.ruby }}"
7
- runs-on: ubuntu-22.04
7
+ runs-on: ubuntu-24.04
8
8
 
9
9
  strategy:
10
10
  fail-fast: false
11
11
  matrix:
12
12
  ruby:
13
+ - "4.0"
14
+ - "3.4"
13
15
  - "3.3"
14
16
  - "3.2"
15
17
  - "3.1"
@@ -34,7 +36,7 @@ jobs:
34
36
 
35
37
  rubocop:
36
38
  name: rubocop
37
- runs-on: ubuntu-22.04
39
+ runs-on: ubuntu-24.04
38
40
 
39
41
  env:
40
42
  BUNDLE_WITHOUT: development
@@ -43,7 +45,7 @@ jobs:
43
45
  - uses: actions/checkout@master
44
46
  - uses: ruby/setup-ruby@v1
45
47
  with:
46
- ruby-version: "3.3"
48
+ ruby-version: "4.0.0"
47
49
  bundler-cache: true
48
50
  env:
49
51
  BUNDLE_WITHOUT: development
data/.markdownlint.yml ADDED
@@ -0,0 +1,12 @@
1
+ # markdownlint config
2
+
3
+ # The CHANGELOG contains duplicated headers by design
4
+ MD024: false
5
+
6
+ # MD013/line-length: disable line length for all. We prefer lines as
7
+ # long as paragraph with in-editor line breaks.
8
+ MD013: false
9
+
10
+ # MD048/code-fence-style: code fence style
11
+ MD048:
12
+ style: backtick
data/CHANGELOG.md CHANGED
@@ -15,6 +15,22 @@ This project adheres to [Semantic Versioning](http://semver.org/) and [Keep a Ch
15
15
 
16
16
  ### Breaks
17
17
 
18
+ ## 1.4.2 - (2025-12-31)
19
+
20
+ ---
21
+
22
+ ### Changes
23
+
24
+ - Automate release workflow
25
+
26
+ ## 1.4.1 - (2025-12-31)
27
+
28
+ ---
29
+
30
+ ### Changes
31
+
32
+ - Automate release workflow
33
+
18
34
  ## 1.4.0 - (2024-07-11)
19
35
 
20
36
  ### New
data/Gemfile CHANGED
@@ -7,7 +7,7 @@ gemspec
7
7
 
8
8
  gem 'activesupport'
9
9
  gem 'rake'
10
- gem 'rake-release', '~> 1.2'
10
+ gem 'rake-release', '~> 1.4'
11
11
  gem 'rspec', '~> 3.0'
12
12
 
13
- gem 'rubocop-config', github: 'jgraichen/rubocop-config', ref: 'v12', require: false
13
+ gem 'rubocop-config', github: 'jgraichen/rubocop-config', tag: 'v14', require: false
data/lib/uuid4/version.rb CHANGED
@@ -4,7 +4,7 @@ class UUID4
4
4
  module VERSION
5
5
  MAJOR = 1
6
6
  MINOR = 4
7
- PATCH = 0
7
+ PATCH = 2
8
8
  STAGE = nil
9
9
  STRING = [MAJOR, MINOR, PATCH, STAGE].compact.join('.')
10
10
 
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: uuid4
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.0
4
+ version: 1.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Graichen
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain: []
11
- date: 2024-07-11 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: base62-rb
@@ -24,7 +23,6 @@ dependencies:
24
23
  - - "~>"
25
24
  - !ruby/object:Gem::Version
26
25
  version: 0.3.0
27
- description:
28
26
  email:
29
27
  - jg@altimos.de
30
28
  executables: []
@@ -33,8 +31,10 @@ extra_rdoc_files: []
33
31
  files:
34
32
  - ".github/workflows/maintenance-cache-wipe.yml"
35
33
  - ".github/workflows/maintenance-workflow-cleanup.yml"
34
+ - ".github/workflows/release.yml"
36
35
  - ".github/workflows/test.yml"
37
36
  - ".gitignore"
37
+ - ".markdownlint.yml"
38
38
  - ".rspec"
39
39
  - ".rubocop.yml"
40
40
  - CHANGELOG.md
@@ -57,7 +57,6 @@ licenses:
57
57
  - MIT
58
58
  metadata:
59
59
  rubygems_mfa_required: 'true'
60
- post_install_message:
61
60
  rdoc_options: []
62
61
  require_paths:
63
62
  - lib
@@ -72,8 +71,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
72
71
  - !ruby/object:Gem::Version
73
72
  version: '0'
74
73
  requirements: []
75
- rubygems_version: 3.5.11
76
- signing_key:
74
+ rubygems_version: 4.0.3
77
75
  specification_version: 4
78
76
  summary: A UUIDv4 support library
79
77
  test_files: []