versionaire 10.5.0 → 10.6.0

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: f17a50efda09cafe9d5d2416d3ffe07ede58a1dd463f4355536075ad2c1b60af
4
- data.tar.gz: 81b1567024ff03840b9bd878efc2fed81e87bae23c2373d13298ddd91a28872e
3
+ metadata.gz: 1bc09e4b09c2aecde2a951b64683e643d51e4d726a24a54161795dd822bb9b79
4
+ data.tar.gz: 55dcce05ba6ff5224bfc68e6a59b7c3f28b765f345f27dac086c6da7274b0715
5
5
  SHA512:
6
- metadata.gz: 510a8a2d9f4e086380c22702fc106555b74d574adc4653c7a08f441fe6b3dc10adff70bc60fd1d54664bd35b4479fc9452d40657813bd70526f3c82595a10cfc
7
- data.tar.gz: 2a20ee6de5a824b08629c80285d166b2156b58c2335e03c65a5b0f58dc5193bcd73feff936a60919ce5258bc2c01448908c6d523c26397919cc2e44d3de6fbea
6
+ metadata.gz: 7d09df087ae1c8b0730e20b82a57ad0c56b8b9272903ba7cfbab2650411020f6a7d944b2946cfd4e62cc456decb06f5fa80153297dc97b48dc455d9d6d549a29
7
+ data.tar.gz: 32a6f3b7632a2971e6032385e78e2b03eeb18c9eb5aefd15b3bceaf4d9066d03db43708aa06cb39e4365118b873904e558b92b745aa652c06eaeee32d84e8b1d
checksums.yaml.gz.sig CHANGED
Binary file
data/README.adoc CHANGED
@@ -2,20 +2,23 @@
2
2
  :toclevels: 5
3
3
  :figure-caption!:
4
4
 
5
+ :semver_link: link:https://semver.org[Semantic Versioning]
6
+
5
7
  = Versionaire
6
8
 
7
- Ruby doesn't provide a primitive version type by default. Versionaire fills this gap by providing an
8
- immutable, thread-safe, and link:https://semver.org[Semantic Version] in order to use versions
9
- within your applications. This new version type behaves and feels a lot like other primitives (i.e.
10
- `String`, `Array`, `Hash`, etc) and can even be cast/converted from other primitives.
9
+ Ruby doesn't provide a primitive version type by default so Versionaire fills this gap by providing immutable and thread-safe {semver_link} so you can leverage versions within your applications. This new `Version` type behaves and feels a lot like other primitives (i.e. `String`, `Array`, `Hash`, etc) and can even be cast/converted from other primitives.
10
+
11
+
11
12
 
12
13
  toc::[]
13
14
 
14
15
  == Features
15
16
 
16
- * Provides https://semver.org[Semantic Versioning].
17
+ * Provides _strict_ {semver_link} which means `<major>.<minor>.<patch>`.
17
18
  * Provides immutable, thread-safe version instances.
18
19
  * Converts (casts) from a `String`, `Array`, `Hash`, or `Version` to a `Version`.
20
+ * Disallows `<major>.<minor>.<patch>-<pre-release>` usage even though {semver_link} suggests that you _may_ use pre-release information.
21
+ * Disallows `<major>.<minor>.<patch>+<build_metadata>` usage even though {semver_link} suggests that you _may_ use build metadata.
19
22
 
20
23
  == Screencasts
21
24
 
@@ -322,7 +325,7 @@ To contribute, run:
322
325
 
323
326
  [source,bash]
324
327
  ----
325
- git clone https://github.com/bkuhlmann/versionaire.git
328
+ git clone https://github.com/bkuhlmann/versionaire
326
329
  cd versionaire
327
330
  bin/setup
328
331
  ----
data/versionaire.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = "versionaire"
5
- spec.version = "10.5.0"
5
+ spec.version = "10.6.0"
6
6
  spec.authors = ["Brooke Kuhlmann"]
7
7
  spec.email = ["brooke@alchemists.io"]
8
8
  spec.homepage = "https://www.alchemists.io/projects/versionaire"
@@ -23,7 +23,7 @@ Gem::Specification.new do |spec|
23
23
  spec.cert_chain = [Gem.default_cert_path]
24
24
 
25
25
  spec.required_ruby_version = "~> 3.1"
26
- spec.add_dependency "refinements", "~> 9.6"
26
+ spec.add_dependency "refinements", "~> 9.7"
27
27
 
28
28
  spec.files = Dir["*.gemspec", "lib/**/*"]
29
29
  spec.extra_rdoc_files = Dir["README*", "LICENSE*"]
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: versionaire
3
3
  version: !ruby/object:Gem::Version
4
- version: 10.5.0
4
+ version: 10.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brooke Kuhlmann
@@ -28,7 +28,7 @@ cert_chain:
28
28
  CxDe2+VuChj4I1nvIHdu+E6XoEVlanUPKmSg6nddhkKn2gC45Kyzh6FZqnzH/CRp
29
29
  RFE=
30
30
  -----END CERTIFICATE-----
31
- date: 2022-07-17 00:00:00.000000000 Z
31
+ date: 2022-10-22 00:00:00.000000000 Z
32
32
  dependencies:
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: refinements
@@ -36,14 +36,14 @@ dependencies:
36
36
  requirements:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: '9.6'
39
+ version: '9.7'
40
40
  type: :runtime
41
41
  prerelease: false
42
42
  version_requirements: !ruby/object:Gem::Requirement
43
43
  requirements:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
- version: '9.6'
46
+ version: '9.7'
47
47
  description:
48
48
  email:
49
49
  - brooke@alchemists.io
@@ -88,7 +88,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
88
88
  - !ruby/object:Gem::Version
89
89
  version: '0'
90
90
  requirements: []
91
- rubygems_version: 3.3.18
91
+ rubygems_version: 3.3.24
92
92
  signing_key:
93
93
  specification_version: 4
94
94
  summary: Provides an immutable, thread-safe, and semantic version type.
metadata.gz.sig CHANGED
@@ -1,2 +1,2 @@
1
- ��{�H�?ˑ��`h���ӛ&g�5o�� �) �K�p"�~
2
- /�̂��� �w���8SZ7��Ւn\���Iu2�HV��lm��R;hh({�z�'�� �-�gc����DM���#acH��v�£��������7�`z)�*Sw36��3��4����F�\jiQR["Cr�#d�#�Z+����%��IA��џYfl��J��jf��rib"!ς|�Ї�*�aqeԱx���T
1
+ ���VHچ��2Ņ����
2
+ $�9^�����Э�#�au��A��aG�;v�+I����(q�\ِ,��F�zOfz��|}��<����� �H�`�A�È@������{�������bO85zs ��_Rn�����8AG�(�>]Ff���y�ģvBo�^ R~۸���|ߍ��?4�nuz8AaSA���(r>�%b�������?��x+&?�؛���^�%�%Yn�@������"���Ue��