effect 3.19.8 → 3.19.9

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.
@@ -1,4 +1,4 @@
1
- let moduleVersion = "3.19.8";
1
+ let moduleVersion = "3.19.9";
2
2
  export const getCurrentVersion = () => moduleVersion;
3
3
  export const setCurrentVersion = version => {
4
4
  moduleVersion = version;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "effect",
3
- "version": "3.19.8",
3
+ "version": "3.19.9",
4
4
  "description": "The missing standard library for TypeScript, for writing production-grade software.",
5
5
  "license": "MIT",
6
6
  "repository": {
package/src/Schema.ts CHANGED
@@ -8369,7 +8369,7 @@ const bigDecimalPretty = (): pretty_.Pretty<bigDecimal_.BigDecimal> => (val) =>
8369
8369
  `BigDecimal(${bigDecimal_.format(bigDecimal_.normalize(val))})`
8370
8370
 
8371
8371
  const bigDecimalArbitrary = (): LazyArbitrary<bigDecimal_.BigDecimal> => (fc) =>
8372
- fc.tuple(fc.bigInt(), fc.integer({ min: 0, max: 18 }))
8372
+ fc.tuple(fc.bigInt(), fc.integer({ min: -18, max: 18 }))
8373
8373
  .map(([value, scale]) => bigDecimal_.make(value, scale))
8374
8374
 
8375
8375
  /**
@@ -1,4 +1,4 @@
1
- let moduleVersion = "3.19.8"
1
+ let moduleVersion = "3.19.9"
2
2
 
3
3
  export const getCurrentVersion = () => moduleVersion
4
4