fair_dice_roll 10.0.0 → 12.0.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: f2f825417d9b0a140676a5778c78ecdb9a12ed1ae6ac14e6d2a4aacfaea2ae8a
4
- data.tar.gz: 4dc2a4ac87e533e87daeb3c546364ccca42619c355fcc01a3ed35bb05ce0728d
3
+ metadata.gz: 6e4dabb6aa696a4fcc33ffb92df5d3314b0f1c30a34aa280ee2b3b02181a0cd1
4
+ data.tar.gz: 5639b06026cb0d0ff8fb38372797ed6479d742dacd50d97982a3278d513c03eb
5
5
  SHA512:
6
- metadata.gz: 7c8b2c42d3dad0b6a74b70550c940d8586228d154ab8ff600af094a06de7c75651289e8bc996141b61198786651c484971a1ab81d2954f16808eea0a8b5eb819
7
- data.tar.gz: e30fff70610e93d8562162358e3dfcf6ce3e439af223ee39e8c06ac92a89cb75ac47ac7c311c93d217bb950882f2cf8b230e8bdeae09308a4cb1d35bed21fd60
6
+ metadata.gz: 50064b52304d1e2e63cbe7be5797eabe54b95f4f59320a3406e763902ad19e58d688460420039b31e25e73e01c4b63811a22602da89cd745077b133f2c6cff84
7
+ data.tar.gz: 6d8aee4052859e65aa64eafb499c37193d483b77ed5ff481d4bc6fcb981d1562223894468f72830d9f27266873a4d16bac6a17a8c03c47f53b16136571cb7ed7
data/CHANGELOG.md CHANGED
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [12.0.0] - 2025-09-02
11
+
12
+ ### Changed
13
+
14
+ - Re-roll
15
+
16
+ ## [11.0.0] - 2025-07-01
17
+
18
+ ### Changed
19
+
20
+ - Re-roll
21
+
10
22
  ## [10.0.0] - 2025-03-11
11
23
 
12
24
  ### Added
@@ -104,7 +116,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
104
116
 
105
117
  - Initial release!
106
118
 
107
- [unreleased]: https://github.com/laserlemon/fair_dice_roll/compare/v10.0.0...HEAD
119
+ [unreleased]: https://github.com/laserlemon/fair_dice_roll/compare/v12.0.0...HEAD
120
+ [12.0.0]: https://github.com/laserlemon/fair_dice_roll/compare/v11.0.0...v12.0.0
121
+ [11.0.0]: https://github.com/laserlemon/fair_dice_roll/compare/v10.0.0...v11.0.0
108
122
  [10.0.0]: https://github.com/laserlemon/fair_dice_roll/compare/v9.0.0...v10.0.0
109
123
  [9.0.0]: https://github.com/laserlemon/fair_dice_roll/compare/v8.0.0...v9.0.0
110
124
  [8.0.0]: https://github.com/laserlemon/fair_dice_roll/compare/v7.0.1...v8.0.0
data/README.md CHANGED
@@ -1,10 +1,16 @@
1
- # FairDiceRoll 🎲
1
+ <h1>
2
+ <picture>
3
+ <source media="(prefers-color-scheme: light)" srcset="https://github.com/user-attachments/assets/00e02a4a-80e5-4ba5-a86c-397f2bccbfa2">
4
+ <source media="(prefers-color-scheme: dark)" srcset="https://github.com/user-attachments/assets/48e6f6c2-f546-4ae8-ae41-90813a7bb623">
5
+ <img alt="Fair Dice Roll" src="https://github.com/user-attachments/assets/00e02a4a-80e5-4ba5-a86c-397f2bccbfa2" style="height:2em">
6
+ </picture>
7
+ </h1>
2
8
 
3
9
  Finally. Truly random numbers in Ruby.
4
10
 
5
- [![Gem Version](https://img.shields.io/gem/v/fair_dice_roll)](http://rubygems.org/gems/fair_dice_roll)
6
- [![Build Status](https://img.shields.io/github/actions/workflow/status/laserlemon/fair_dice_roll/rake.yml)](https://github.com/laserlemon/fair_dice_roll/actions/workflows/rake.yml)
7
- [![License](https://img.shields.io/github/license/laserlemon/fair_dice_roll)](https://github.com/laserlemon/fair_dice_roll/blob/-/LICENSE.txt)
11
+ [![Made by laserlemon](https://img.shields.io/badge/laser-lemon-fc0?style=flat-square)](https://github.com/laserlemon)
12
+ [![Gem version](https://img.shields.io/gem/v/fair_dice_roll?style=flat-square)](https://rubygems.org/gems/fair_dice_roll)
13
+ [![Build status](https://img.shields.io/github/actions/workflow/status/laserlemon/fair_dice_roll/test.yml?style=flat-square)](https://github.com/laserlemon/fair_dice_roll/actions/workflows/test.yml)
8
14
 
9
15
  ## Installation
10
16
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module FairDiceRoll
4
- VERSION = Gem::Version.new("10.0.0")
4
+ VERSION = Gem::Version.new("12.0.0")
5
5
  end
@@ -3,8 +3,8 @@
3
3
  require "securerandom"
4
4
 
5
5
  module FairDiceRoll
6
- RANDOM_NUMBER = 56 # chosen by fair dice roll.
7
- # guaranteed to be random.
6
+ RANDOM_NUMBER = 7 # chosen by fair dice roll.
7
+ # guaranteed to be random.
8
8
  end
9
9
 
10
10
  module Kernel
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fair_dice_roll
3
3
  version: !ruby/object:Gem::Version
4
- version: 10.0.0
4
+ version: 12.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Steve Richert
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-11 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: bundler
@@ -74,7 +74,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
74
74
  - !ruby/object:Gem::Version
75
75
  version: '0'
76
76
  requirements: []
77
- rubygems_version: 3.6.2
77
+ rubygems_version: 3.7.1
78
78
  specification_version: 4
79
79
  summary: Guaranteed to be random.
80
80
  test_files: []