Skip to content

Commit 83a3c4f

Browse files
committed
v10.3.0
1 parent 1d79888 commit 83a3c4f

File tree

2 files changed

+43
-4
lines changed

2 files changed

+43
-4
lines changed

Diff for: CHANGELOG.md

+9-4
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,22 @@ Notable changes to this project are documented in this file. The format is based
55
## [Unreleased]
66

77
Bugfixes:
8-
- `float` parser of `GenTokenParser` does not parse negative numbers (by @mstream)
9-
- Fixes `consumed` semantics which could cause unexpected backtracking instead of a failure (by @natefaubion)
10-
- Fix `Combinators.Array.many` and `Combinators.Array.many1`. If the phrase fails after consuming
11-
then the combinator fails. (#240 by @jamesdbrock)
128

139
Breaking changes:
1410

1511
New features:
1612

1713
Other improvements:
1814

15+
## [v10.3.0](https://github.com/purescript-contrib/purescript-parsing/releases/tag/v10.3.0) - 2025-03-08
16+
17+
Bugfixes:
18+
19+
- `float` parser of `GenTokenParser` does not parse negative numbers (by @mstream)
20+
- Fixes `consumed` semantics which could cause unexpected backtracking instead of a failure (by @natefaubion)
21+
- Fix `Combinators.Array.many` and `Combinators.Array.many1`. If the phrase fails after consuming
22+
then the combinator fails. (#240 by @jamesdbrock)
23+
1924
## [v10.2.0](https://github.com/purescript-contrib/purescript-parsing/releases/tag/v10.2.0) - 2022-11-30
2025

2126
New features:

Diff for: spago.yaml

+34
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,40 @@ package:
3434
- console
3535
- node-process
3636
- nonempty
37+
publish:
38+
# The version of your package. This follows semver rules, but with no
39+
# prereleases - so only major.minor.patch.
40+
version: 10.3.0
41+
# The license for your source, in SPDX format: https://spdx.dev/
42+
license: BSD-2-Clause
43+
# # Optional list of globs to include in the published archive, in
44+
# # addition to the list of files that the Registry includes by default:
45+
# # https://github.com/purescript/registry-dev/blob/master/SPEC.md#always-included-files
46+
# include:
47+
# - "test/**/*.purs"
48+
# # Optional list of globs to exclude from the published archive, in
49+
# # addition to the list of files that the Registry includes by default:
50+
# # https://github.com/purescript/registry-dev/blob/master/SPEC.md#always-excluded-files
51+
# # Note that the Registry will first apply the `include` list, then
52+
# # the `exclude` one, as detailed in the specification:
53+
# # https://github.com/purescript/registry-dev/blob/master/SPEC.md#33-manifest
54+
# exclude:
55+
# - "test/graphs/**/*"
56+
# The place where the Registry will fetch the source from.
57+
# This is optional since you might want to release the code without
58+
# publishing to the Registry, which is what this is needed for.
59+
location:
60+
# There are a few supported locations:
61+
# 1) Github: no URL needed, just username and the name of the repo
62+
# The `subdir` field is optional, and only necessary if your
63+
# package is not in the root of the repo.
64+
githubOwner: purescript-contrib
65+
githubRepo: purescript-parsing
66+
# subdir: lib
67+
# 2) Git: any git server should work with this
68+
# The `subdir` is optional as above
69+
url: https://github.com/purescript-contrib/purescript-parsing
70+
# subdir: lib
3771
workspace:
3872
extraPackages: {}
3973
packageSet:

0 commit comments

Comments
 (0)