-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make a bunch of changes to get party to 1.0; see CHANGELOG.md
- Loading branch information
1 parent
d7e2b25
commit 1be755a
Showing
6 changed files
with
120 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [1.0.0] - 2024-03-21 | ||
|
||
### Added | ||
|
||
- Parse errors return positions finally! | ||
- `digits` convenience function | ||
- `many_concat` convenience function | ||
- `many1_concat` convenience function | ||
- A little demo in the README | ||
|
||
### Changed | ||
|
||
- Update dependencies for Gleam 1.0! | ||
- `alt` renamed to `either`. | ||
|
||
### Fixed | ||
|
||
- Make pattern matching "exhaustive" with explicit panics for illegal inputs. This is required to make `party` compile with Gleam 1.0. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
name = "party" | ||
version = "0.1.3" | ||
version = "1.0.0" | ||
description = "A little parser combinator library" | ||
|
||
licences = ["GPL-3.0-or-later"] | ||
repository = { type = "github", user = "RyanBrewer317", repo = "party" } | ||
gleam = ">= 0.32.0" | ||
# links = [{ title = "Website", href = "https://gleam.run" }] | ||
|
||
[dependencies] | ||
gleam_stdlib = "~> 0.30" | ||
gleam_stdlib = "~> 0.36" | ||
|
||
[dev-dependencies] | ||
gleeunit = "~> 0.10" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters