fair_dice_roll 10.0.0 → 11.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: c1617f4376f2d3a52b38b41f56b4905277febd11036b2f385a020e4f4b73ef60
4
+ data.tar.gz: 774f09973ab2e3b44ebb98564adff7a928d4974304c91e9ad7030f4080c8f4ea
5
5
  SHA512:
6
- metadata.gz: 7c8b2c42d3dad0b6a74b70550c940d8586228d154ab8ff600af094a06de7c75651289e8bc996141b61198786651c484971a1ab81d2954f16808eea0a8b5eb819
7
- data.tar.gz: e30fff70610e93d8562162358e3dfcf6ce3e439af223ee39e8c06ac92a89cb75ac47ac7c311c93d217bb950882f2cf8b230e8bdeae09308a4cb1d35bed21fd60
6
+ metadata.gz: e789c55b8e0b19e921c1895ec87f75dc1abb1d11fa815503264d7fe150f5612234a0612060b4c314167ea3bbd84e14cbee8f64018c5f2682a9ab00f75ac9c0f4
7
+ data.tar.gz: 3eca29678cdf64e40c1e7d066998655aaee8e9685009dfdf3bed9265eb8b6541c06ee366815e7a80afd9e84892151d8fc09935329f7cc48450bf9c8e97c235ae
data/CHANGELOG.md CHANGED
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [11.0.0]
11
+
12
+ ### Changed
13
+
14
+ - Re-roll
15
+
10
16
  ## [10.0.0] - 2025-03-11
11
17
 
12
18
  ### Added
@@ -104,7 +110,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
104
110
 
105
111
  - Initial release!
106
112
 
107
- [unreleased]: https://github.com/laserlemon/fair_dice_roll/compare/v10.0.0...HEAD
113
+ [unreleased]: https://github.com/laserlemon/fair_dice_roll/compare/v11.0.0...HEAD
114
+ [11.0.0]: https://github.com/laserlemon/fair_dice_roll/compare/v10.0.0...v11.0.0
108
115
  [10.0.0]: https://github.com/laserlemon/fair_dice_roll/compare/v9.0.0...v10.0.0
109
116
  [9.0.0]: https://github.com/laserlemon/fair_dice_roll/compare/v8.0.0...v9.0.0
110
117
  [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("11.0.0")
5
5
  end
@@ -3,7 +3,7 @@
3
3
  require "securerandom"
4
4
 
5
5
  module FairDiceRoll
6
- RANDOM_NUMBER = 56 # chosen by fair dice roll.
6
+ RANDOM_NUMBER = 13 # chosen by fair dice roll.
7
7
  # guaranteed to be random.
8
8
  end
9
9
 
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: 11.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: 2025-07-01 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: bundler