Skip to content

Update rand to 0.10.0#49

Open
ghost-of-high-heart[bot] wants to merge 1 commit intomainfrom
syz/update-rand
Open

Update rand to 0.10.0#49
ghost-of-high-heart[bot] wants to merge 1 commit intomainfrom
syz/update-rand

Conversation

@ghost-of-high-heart
Copy link
Copy Markdown
Contributor

@ghost-of-high-heart ghost-of-high-heart Bot commented Apr 5, 2026

This PR updates rand from version 0.9.2 to 0.10.0.

Release History

The history covers 84 releases. The latest version was published 1 month ago (6 months after the current version).

0.10.0

Published 1 month ago

Changes

  • The dependency on rand_chacha has been replaced with a dependency on chacha20. This changes the implementation behind StdRng, but the output remains the same. There may be some API breakage when using the ChaCha-types directly as these are now the ones in chacha20 instead of rand_chacha (#1642).
  • Rename fns IndexedRandom::choose_multiple -> sample, choose_multiple_array -> sample_array, choose_multiple_weighted -> sample_weighted, struct SliceChooseIter -> IndexedSamples and fns IteratorRandom::choose_multiple -> sample, choose_multiple_fill -> sample_fill (#1632)
  • Use Edition 2024 and MSRV 1.85 (#1653)
  • Let Fill be implemented for element types, not sliceable types (#1652)
  • Fix OsError::raw_os_error on UEFI targets by returning Option<usize> (#1665)
  • Replace fn TryRngCore::read_adapter(..) -> RngReadAdapter with simpler struct RngReader (#1669)
  • Remove fns SeedableRng::from_os_rng, try_from_os_rng (#1674)
  • Remove Clone support for StdRng, ReseedingRng (#1677)
  • Use postcard instead of bincode to test the serde feature (#1693)
  • Avoid excessive allocation in IteratorRandom::sample when amount is much larger than iterator size (#1695)
  • Rename os_rng -> sys_rng, OsRng -> SysRng, OsError -> SysError (#1697)
  • Rename Rng -> RngExt as upstream rand_core has renamed RngCore -> Rng (#1717)

Additions

  • Add fns IndexedRandom::choose_iter, choose_weighted_iter (#1632)
  • Pub export Xoshiro128PlusPlus, Xoshiro256PlusPlus prngs (#1649)
  • Pub export ChaCha8Rng, ChaCha12Rng, ChaCha20Rng behind chacha feature (#1659)
  • Fn rand::make_rng() -> R where R: SeedableRng (#1734)

Removals

  • Removed ReseedingRng (#1722)
  • Removed unused feature "nightly" (#1732)
  • Removed feature small_rng (#1732)

New Contributors

Full Changelog: rust-random/rand@0.9.2...0.10.0

0.10.0-rc.9

Published 1 month ago

Changelog could not be fetched. View release notes on GitHub

0.10.0-rc.8

Published 2 months ago

Changelog could not be fetched. View release notes on GitHub

0.10.0-rc.7

Published 2 months ago

Changelog could not be fetched. View release notes on GitHub

0.10.0-rc.6

Published 3 months ago

Changelog could not be fetched. View release notes on GitHub

0.10.0-rc.5

Published 4 months ago

Changelog could not be fetched. View release notes on GitHub

0.10.0-rc.1

Published 5 months ago

Changelog could not be fetched. View release notes on GitHub

0.10.0-rc.0

Published 6 months ago

Changelog could not be fetched. View release notes on GitHub

0.9.2 (Current Version)

Published 8 months ago

0.9.1

Published 11 months ago

Changelog

Security and unsafe

  • Revise "not a crypto library" policy again (#1565)
  • Remove zerocopy dependency from rand (#1579)

Fixes

  • Fix feature simd_support for recent nightly rust (#1586)

Changes

  • Allow fn rand::seq::index::sample_weighted and fn IndexedRandom::choose_multiple_weighted to return fewer than amount results (#1623), reverting an undocumented change (#1382) to the previous release.

Additions

  • Add rand::distr::Alphabetic distribution. (#1587)
  • Re-export rand_core (#1604)

New Contributors

Full Changelog: rust-random/rand@0.9.0...0.9.1

0.9.0

Published 1 year ago

Upgrade guide

See https://rust-random.github.io/book/update-0.9.html

Changelog

Security and unsafe

  • Policy: "rand is not a crypto library" (#1514)
  • Remove fork-protection from ReseedingRng and ThreadRng. Instead, it is recommended to call ThreadRng::reseed on fork. (#1379)
  • Use zerocopy to replace some unsafe code (#1349, #1393, #1446, #1502)

Dependencies

  • Bump the MSRV to 1.63.0 (#1207, #1246, #1269, #1341, #1416, #1536); note that 1.60.0 may work for dependents when using --ignore-rust-version
  • Update to rand_core v0.9.0 (#1558)

Features

  • Support std feature without getrandom or rand_chacha (#1354)
  • Enable feature small_rng by default (#1455)
  • Remove implicit feature rand_chacha; use std_rng instead. (#1473)
  • Rename feature serde1 to serde (#1477)
  • Rename feature getrandom to os_rng (#1537)
  • Add feature thread_rng (#1547)

API changes: rand_core traits

  • Add fn RngCore::read_adapter implementing std::io::Read (#1267)
  • Add trait CryptoBlockRng: BlockRngCore; make trait CryptoRng: RngCore (#1273)
  • Add traits TryRngCore, TryCryptoRng (#1424, #1499)
  • Rename fn SeedableRng::from_rng -> try_from_rng and add infallible variant fn from_rng (#1424)
  • Rename fn SeedableRng::from_entropy -> from_os_rng and add fallible variant fn try_from_os_rng (#1424)
  • Add bounds Clone and AsRef to associated type SeedableRng::Seed (#1491)

API changes: Rng trait and top-level fns

  • Rename fn rand::thread_rng() to rand::rng() and remove from the prelude (#1506)
  • Remove fn rand::random() from the prelude (#1506)
  • Add top-level fns random_iter, random_range, random_bool, random_ratio, fill (#1488)
  • Re-introduce fn Rng::gen_iter as random_iter (#1305, #1500)
  • Rename fn Rng::gen to random to avoid conflict with the new gen keyword in Rust 2024 (#1438)
  • Rename fns Rng::gen_range to random_range, gen_bool to random_bool, gen_ratio to random_ratio (#1505)
  • Annotate panicking methods with #[track_caller] (#1442, #1447)

API changes: RNGs

  • Fix <SmallRng as SeedableRng>::Seed size to 256 bits (#1455)
  • Remove first parameter (rng) of ReseedingRng::new (#1533)

API changes: Sequences

  • Split trait SliceRandom into IndexedRandom, IndexedMutRandom, SliceRandom (#1382)
  • Add IndexedRandom::choose_multiple_array, index::sample_array (#1453, #1469)

API changes: Distributions: renames

  • Rename module rand::distributions to rand::distr (#1470)
  • Rename distribution Standard to StandardUniform (#1526)
  • Move distr::Slice -> distr::slice::Choose, distr::EmptySlice -> distr::slice::Empty (#1548)
  • Rename trait distr::DistString -> distr::SampleString (#1548)
  • Rename distr::DistIter -> distr::Iter, distr::DistMap -> distr::Map (#1548)

API changes: Distributions

  • Relax Sized bound on Distribution<T> for &D (#1278)
  • Remove impl of Distribution<Option<T>> for StandardUniform (#1526)
  • Let distribution StandardUniform support all NonZero* types (#1332)
  • Fns {Uniform, UniformSampler}::{new, new_inclusive} return a Result (instead of potentially panicking) (#1229)
  • Distribution Uniform implements TryFrom instead of From for ranges (#1229)
  • Add UniformUsize (#1487)
  • Remove support for generating isize and usize values with StandardUniform, Uniform (except via UniformUsize) and Fill and usage as a WeightedAliasIndex weight (#1487)
  • Add impl DistString for distributions Slice<char> and Uniform<char> (#1315)
  • Add fn Slice::num_choices (#1402)
  • Add fn p() for distribution Bernoulli to access probability (#1481)

API changes: Weighted distributions

  • Add pub module rand::distr::weighted, moving WeightedIndex there (#1548)
  • Add trait weighted::Weight, allowing WeightedIndex to trap overflow (#1353)
  • Add fns weight, weights, total_weight to distribution WeightedIndex (#1420)
  • Rename enum WeightedError to weighted::Error, revising variants (#1382) and mark as #[non_exhaustive] (#1480)

API changes: SIMD

  • Switch to std::simd, expand SIMD & docs (#1239)

Reproducibility-breaking changes

  • Make ReseedingRng::reseed discard remaining data from the last block generated (#1379)
  • Change fn SmallRng::seed_from_u64 implementation (#1203)
  • Allow UniformFloat::new samples and UniformFloat::sample_single to yield high (#1462)
  • Fix portability of distribution Slice (#1469)
  • Make Uniform for usize portable via UniformUsize (#1487)
  • Fix IndexdRandom::choose_multiple_weighted for very small seeds and optimize for large input length / low memory (#1530)

Reproducibility-breaking optimisations

  • Optimize fn sample_floyd, affecting output of rand::seq::index::sample and rand::seq::SliceRandom::choose_multiple (#1277)
  • New, faster algorithms for IteratorRandom::choose and choose_stable (#1268)
  • New, faster algorithms for SliceRandom::shuffle and partial_shuffle (#1272)
  • Optimize distribution Uniform: use Canon's method (single sampling) / Lemire's method (distribution sampling) for faster sampling (breaks value stability; #1287)
  • Optimize fn sample_single_inclusive for floats (+~20% perf) (#1289)

Other optimisations

  • Improve SmallRng initialization performance (#1482)
  • Optimise SIMD widening multiply (#1247)

Other

  • Add Cargo.lock.msrv file (#1275)
  • Reformat with rustfmt and enforce (#1448)
  • Apply Clippy suggestions and enforce (#1448, #1474)
  • Move all benchmarks to new benches crate (#1329, #1439) and migrate to Criterion (#1490)

Documentation

  • Improve ThreadRng related docs (#1257)
  • Docs: enable experimental --generate-link-to-definition feature (#1327)
  • Better doc of crate features, use doc_auto_cfg (#1411, #1450)

All PRs

New Contributors

Full Changelog: rust-random/rand@0.8.5...0.9.0

0.9.0-beta.3

Published 1 year ago

Changes to rand

  • Add feature thread_rng (#1547)
  • Move distr::Slice -> distr::slice::Choose, distr::EmptySlice -> distr::slice::Empty (#1548)
  • Rename trait distr::DistString -> distr::SampleString (#1548)
  • Rename distr::DistIter -> distr::Iter, distr::DistMap -> distr::Map (#1548)
  • Move distr::{Weight, WeightError, WeightedIndex} -> distr::weighted::{Weight, Error, WeightedIndex} (#1548)

Changes to rand_distr

  • Move Slice -> slice::Choose, EmptySlice -> slice::Empty (#1548)
  • Rename trait DistString -> SampleString (#1548)
  • Rename DistIter -> Iter, DistMap -> Map (#1548)
  • Move {Weight, WeightError, WeightedIndex} -> weighted::{Weight, Error, WeightedIndex} (#1548)
  • Move weighted_alias::{AliasableWeight, WeightedAliasIndex} -> weighted::{..} (#1548)
  • Move weighted_tree::WeightedTreeIndex -> weighted::WeightedTreeIndex (#1548)

New Contributors

Full Changelog: rust-random/rand@0.9.0-beta.1...0.9.0-beta.3

0.9.0-beta.1

Published 1 year ago

Changelog could not be fetched. View release notes on GitHub

0.9.0-beta.0

Published 1 year ago

This is a pre-release. To depend on this version, use rand = "=0.9.0-beta.0" to prevent automatic updates (which can be expected to include breaking changes).

Security and unsafe

  • Policy: "rand is not a crypto library" (#1514)
  • Remove fork-protection from ReseedingRng and ThreadRng. Instead, it is recommended to call ThreadRng::reseed on fork. (#1379)
  • Use zerocopy to replace some unsafe code (#1349, #1393, #1446, #1502)

Compilation options

  • Bump the MSRV to 1.63.0 (#1207, #1246, #1269, #1341, #1416, #1536); note that 1.60.0 may work for dependents when using --ignore-rust-version
  • Support std feature without getrandom or rand_chacha (#1354)
  • Improve thread_rng related docs (#1257)
  • The serde1 feature has been renamed serde (#1477)
  • The implicit feature rand_chacha has been removed. This is enabled by std_rng. (#1473)
  • Enable feature small_rng by default (#1455)
  • Rename feature getrandom to os_rng (#1537)

Inherited changes from rand_core

  • Add fn RngCore::read_adapter implementing std::io::Read (#1267)
  • Add trait CryptoBlockRng: BlockRngCore; make trait CryptoRng: RngCore (#1273)
  • Add traits TryRngCore, TryCryptoRng (#1424, #1499)
  • Add bounds Clone and AsRef to associated type SeedableRng::Seed (#1491)

Rng trait and top-level fns

  • Rename fn rand::thread_rng() to rand::rng(), and remove from the prelude (#1506)
  • Add top-level fns random_iter, random_range, random_bool, random_ratio, fill (#1488)
  • Remove fn rand::random() from the prelude (#1506)
  • Re-introduce fn Rng::gen_iter as random_iter (#1305, #1500)
  • Rename fn Rng::gen to random to avoid conflict with the new gen keyword in Rust 2024 (#1438)
  • Rename fns Rng::gen_range to random_range, gen_bool to random_bool, gen_ratio to random_ratio (#1505)
  • Annotate panicking methods with #[track_caller] (#1442, #1447)

RNGs

  • Make ReseedingRng::reseed discard remaining data from the last block generated (#1379)
  • Change fn SmallRng::seed_from_u64 implementation (#1203)
  • Fix <SmallRng as SeedableRng>::Seed size to 256 bits (#1455)
  • Remove first parameter (rng) of ReseedingRng::new (#1533)
  • Improve SmallRng initialization performance (#1482)

Sequences

  • Optimize fn sample_floyd, affecting output of rand::seq::index::sample and rand::seq::SliceRandom::choose_multiple (#1277)
  • New, faster algorithms for IteratorRandom::choose and choose_stable (#1268)
  • New, faster algorithms for SliceRandom::shuffle and partial_shuffle (#1272)
  • Split trait SliceRandom into IndexedRandom, IndexedMutRandom, SliceRandom (#1382)
  • Add IndexedRandom::choose_multiple_array, index::sample_array (#1453, #1469)
  • Fix IndexdRandom::choose_multiple_weighted for very small seeds and optimize for large input length / low memory (#1530)

Distributions

  • Rename module rand::distributions to rand::distr (#1470)
  • Relax Sized bound on Distribution<T> for &D (#1278)
  • Rename distribution Standard to StandardUniform (#1526)
  • Remove impl of Distribution<Option<T>> for StandardUniform (#1526)
  • Let distribution StandardUniform support all NonZero* types (#1332)
  • Fns {Uniform, UniformSampler}::{new, new_inclusive} return a Result (instead of potentially panicking) (#1229)
  • Distribution Uniform implements TryFrom instead of From for ranges (#1229)
  • Optimize distribution Uniform: use Canon's method (single sampling) / Lemire's method (distribution sampling) for faster sampling (breaks value stability; #1287)
  • Add UniformUsize and use to make Uniform for usize portable (#1487)
  • Optimize fn sample_single_inclusive for floats (+~20% perf) (#1289)
  • Allow UniformFloat::new samples and UniformFloat::sample_single to yield high (#1462)
  • Add impl DistString for distributions Slice<char> and Uniform<char> (#1315)
  • Add fn Slice::num_choices (#1402)
  • Fix portability of distribution Slice (#1469)
  • Add trait Weight, allowing WeightedIndex to trap overflow (#1353)
  • Add fns weight, weights, total_weight to distribution WeightedIndex (#1420)
  • Rename enum WeightedError to WeightError, revising variants (#1382) and mark as #[non_exhaustive] (#1480)
  • Add fn p() for distribution Bernoulli to access probability (#1481)

SIMD

  • Switch to std::simd, expand SIMD & docs (#1239)
  • Optimise SIMD widening multiply (#1247)

Documentation

  • Add Cargo.lock.msrv file (#1275)
  • Docs: enable experimental --generate-link-to-definition feature (#1327)
  • Better doc of crate features, use doc_auto_cfg (#1411, #1450)

Other

  • Reformat with rustfmt and enforce (#1448)
  • Apply Clippy suggestions and enforce (#1448, #1474)
  • Move all benchmarks to new benches crate (#1329, #1439) and migrate to Criterion (#1490)

New Contributors

Full Changelog: rust-random/rand@0.9.0-alpha.0...0.9.0-beta.0

0.9.0-alpha.2

Published 1 year ago

Changelog could not be fetched. View release notes on GitHub

0.9.0-alpha.1

Published 2 years ago

Changelog could not be fetched. View release notes on GitHub

0.9.0-alpha.0

Published 2 years ago

This is a pre-release. To depend on this version, use rand = "=0.9.0-alpha.0" to prevent automatic updates (which can be expected to include breaking changes).

Generators

  • Change SmallRng::seed_from_u64 implementation (#1203)
  • Replace SeedableRng impl for SmallRng with inherent methods, excluding fn from_seed (#1368)

Sequences

  • Simpler and faster implementation of Floyd's F2 (#1277). This
    changes some outputs from rand::seq::index::sample and
    rand::seq::SliceRandom::choose_multiple.
  • New, faster algorithms for IteratorRandom::choose and choose_stable (#1268)
  • New, faster algorithms for SliceRandom::shuffle and partial_shuffle (#1272)
  • Re-introduce Rng::gen_iter (#1305)
  • Split trait SliceRandom into IndexedRandom, IndexedMutRandom, SliceRandom (#1382)

Distributions

  • {Uniform, UniformSampler}::{new, new_inclusive} return a Result (instead of potentially panicking) (#1229)
  • Uniform implements TryFrom instead of From for ranges (#1229)
  • Uniform now uses Canon's method (single sampling) / Lemire's method (distribution sampling) for faster sampling (breaks value stability; #1287)
  • Relax Sized bound on Distribution<T> for &D (#1278)
  • Explicit impl of sample_single_inclusive (+~20% perf) (#1289)
  • Impl DistString for Slice<char> and Uniform<char> (#1315)
  • Let Standard support all NonZero* types (#1332)
  • Add trait Weight, allowing WeightedIndex to trap overflow (#1353)
  • Rename WeightedError to WeightError, revising variants (#1382)

SIMD

  • Switch to std::simd, expand SIMD & docs (#1239)
  • Optimise SIMD widening multipy (#1247)

Other

  • Bump MSRV to 1.60.0 (#1207, #1246, #1269, #1341)
  • Improve thread_rng related docs (#1257)
  • Add Cargo.lock.msrv file (#1275)
  • Docs: enable experimental --generate-link-to-definition feature (#1327)
  • Use zerocopy to replace some unsafe code (#1349)
  • Support std feature without getrandom or rand_chacha (#1354)

0.8.5

Published 4 years ago

Fixes

  • Fix build on non-32/64-bit architectures (#1144)
  • Fix "min_const_gen" feature for no_std (#1173)
  • Check libc::pthread_atfork return value with panic on error (#1178)
  • More robust reseeding in case ReseedingRng is used from a fork handler (#1178)
  • Fix nightly: remove unused slice_partition_at_index feature (#1215)
  • Fix nightly + simd_support: update packed_simd (#1216)

Rngs

  • StdRng: Switch from HC128 to ChaCha12 on emscripten (#1142).
    We now use ChaCha12 on all platforms.

Documentation

  • Added docs about rand's use of const generics (#1150)
  • Better random chars example (#1157)

0.8.4

Published 4 years ago

Additions

  • Use const-generics to support arrays of all sizes ([#1104])
  • Implement Clone and Copy for Alphanumeric ([#1126])
  • Add Distribution::map to derive a distribution using a closure ([#1129])
  • Add Slice distribution ([#1107])
  • Add DistString trait with impls for Standard and Alphanumeric ([#1133])

Other

  • Reorder asserts in Uniform float distributions for easier debugging of non-finite arguments ([#1094], [#1108])
  • Add range overflow check in Uniform float distributions ([#1108])
  • Deprecate rngs::adapter::ReadRng ([#1130])

0.8.3

Published 5 years ago

Fixes

  • Fix no-std + alloc build by gating choose_multiple_weighted on std ([#1088])

0.8.2

Published 5 years ago

Fixes

  • Fix panic in UniformInt::sample_single_inclusive and Rng::gen_range when providing a full integer range (eg 0..=MAX) ([#1087])

0.8.1

Published 5 years ago

Other

  • Enable all stable features in the playground ([#1081])

0.8.0

Published 5 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.7.3

Published 6 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.7.2

Published 6 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.7.1

Published 6 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.7.0

Published 6 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.7.0-pre.2

Published 6 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.7.0-pre.1

Published 6 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.7.0-pre.0

Published 6 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.6.5

Published 7 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.3.23

Published 7 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.4.6

Published 7 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.5.6

Published 7 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.4.5

Published 7 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.6.4

Published 7 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.4.4

Published 7 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.6.3

Published 7 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.6.2

Published 7 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.6.1

Published 7 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.6.0

Published 7 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.6.0-pre.1

Published 7 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.6.0-pre.0

Published 7 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.4.3

Published 7 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.5.5

Published 7 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.5.4

Published 7 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.5.3

Published 7 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.5.2

Published 7 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.5.1

Published 7 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.5.0

Published 7 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.5.0-pre.2

Published 7 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.5.0-pre.1

Published 7 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.5.0-pre.0

Published 8 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.3.22

Published 8 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.3.21-pre.0

Published 8 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.4.2

Published 8 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.3.20

Published 8 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.3.19

Published 8 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.4.1

Published 8 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.4.0-pre.0

Published 8 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.3.18

Published 8 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.3.17

Published 8 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.3.16

Published 8 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.3.15

Published 9 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.3.14

Published 10 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.3.13

Published 10 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.3.12

Published 10 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.3.11

Published 10 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.3.10

Published 10 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.3.9

Published 10 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.3.8

Published 10 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.3.7

Published 11 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.3.6

Published 11 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.3.5

Published 11 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.3.4

Published 11 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.3.3

Published 11 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.3.2

Published 11 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.3.1

Published 11 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.3.0

Published 11 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.2.1

Published 11 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.2.0

Published 11 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.1.4

Published 11 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.1.3

Published 11 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.1.2

Published 11 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

0.1.1

Published 11 years ago

Changelog truncated due to GitHub PR size limits. View release notes on GitHub

@bjorn3
Copy link
Copy Markdown

bjorn3 commented Apr 5, 2026

Can you please not ping everyone who made a change to rand?

@baloo
Copy link
Copy Markdown

baloo commented Apr 5, 2026

Wouldn’t bother you if you too were an LLM.

sweet, you can’t even mute the bot on GitHub.

@baloo
Copy link
Copy Markdown

baloo commented Apr 5, 2026

@wereHamster please avoid the disruption caused by your bot

@wereHamster
Copy link
Copy Markdown
Owner

Sorry about that, wasn't my intention. I'll see that it doesn't cause any notifications in the future.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants