Skip to content

Commit f092263

Browse files
committed
v6.2.0
1 parent 365ad80 commit f092263

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
## Unreleased
1111

12+
## v6.2.0
13+
14+
### Added
15+
16+
- Add a new scalar `BigInt`
17+
1218
## v6.1.0
1319

1420
### Added

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ A collection of custom scalar types for usage with https://github.com/webonyx/gr
1818
You can use the provided Scalars just like any other type in your schema definition.
1919
Check [SchemaUsageTest](tests/SchemaUsageTest.php) for an example.
2020

21+
### [BigInt](src/BigInt.php)
22+
23+
An arbitrarily long sequence of digits that represents a big integer.
24+
2125
### [Date](src/Date.php)
2226

2327
A date string with format `Y-m-d`, e.g. `2011-05-23`.

src/BigInt.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55
class BigInt extends Regex
66
{
77
public ?string $description = <<<'DESCRIPTION'
8-
A hexadecimal color is specified with: `#RRGGBB`, where `RR` (red), `GG` (green) and `BB` (blue)
9-
are hexadecimal integers between `00` and `FF` specifying the intensity of the color.
8+
An arbitrarily long sequence of digits that represents a big integer.
109
DESCRIPTION;
1110

1211
public static function regex(): string

0 commit comments

Comments
 (0)