effect 3.10.12 → 3.10.13

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.10.12";
1
+ let moduleVersion = "3.10.13";
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.10.12",
3
+ "version": "3.10.13",
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
@@ -7662,7 +7662,8 @@ const bigDecimalPretty = (): pretty_.Pretty<bigDecimal_.BigDecimal> => (val) =>
7662
7662
  `BigDecimal(${bigDecimal_.format(bigDecimal_.normalize(val))})`
7663
7663
 
7664
7664
  const bigDecimalArbitrary = (): LazyArbitrary<bigDecimal_.BigDecimal> => (fc) =>
7665
- fc.tuple(fc.bigInt(), fc.integer()).map(([value, scale]) => bigDecimal_.make(value, scale))
7665
+ fc.tuple(fc.bigInt(), fc.integer({ min: 0, max: 18 }))
7666
+ .map(([value, scale]) => bigDecimal_.make(value, scale))
7666
7667
 
7667
7668
  /**
7668
7669
  * @category BigDecimal constructors
@@ -1,4 +1,4 @@
1
- let moduleVersion = "3.10.12"
1
+ let moduleVersion = "3.10.13"
2
2
 
3
3
  export const getCurrentVersion = () => moduleVersion
4
4