Make `Rand64::new_inc()` public, as it should be

Resolves issue #5.
2 files changed, 2 insertions(+), 2 deletions(-)

M Cargo.toml
M src/lib.rs
M Cargo.toml +1 -1
@@ 1,6 1,6 @@ 
 [package]
 name = "oorandom"
-version = "11.1.2"
+version = "11.1.3"
 authors = ["Simon Heath <icefox@dreamquest.io>"]
 edition = "2018"
 description = "A tiny, robust PRNG implementation."

          
M src/lib.rs +1 -1
@@ 181,7 181,7 @@ impl Rand64 {
     }
 
     /// Same as `Rand32::new_inc()`
-    fn new_inc(seed: u128, increment: u128) -> Self {
+    pub fn new_inc(seed: u128, increment: u128) -> Self {
         let mut rng = Self {
             state: 0,
             inc: increment.wrapping_shl(1) | 1,