Skip to content

Commit ca796b1

Browse files
authored
chore: Release v1.0 (#59)
1 parent 09b0bbd commit ca796b1

File tree

10 files changed

+196
-107
lines changed

10 files changed

+196
-107
lines changed

CHANGELOG.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88

9-
## Unreleased
9+
## Version 1.0 - 2024-06-25
1010

1111
### Added
1212

@@ -19,9 +19,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1919
+ Only structured events (+ projections) are allowed, not scalar ones.
2020
+ The grammar was updated and finalized.
2121

22-
### Fixed
23-
24-
### Removed
2522

2623
## Version 0.0.2 - 2024-03-15
2724

Cargo.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "tree-sitter-cds"
33
description = "CAP CDS grammar for the tree-sitter parsing library"
4-
version = "0.0.2"
4+
version = "1.0.0"
55
authors = [ "Andre Meyering <[email protected]>" ]
66
license = "Apache-2.0"
77
keywords = ["incremental", "parsing", "cds"]

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION := 0.0.2
1+
VERSION := 1.0.0
22

33
LANGUAGE_NAME := tree-sitter-cds
44

bindings/rust/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ To use this crate, add it to the `[dependencies]` section of your
1111
``` toml
1212
[dependencies]
1313
tree-sitter = "~0.20"
14-
tree-sitter-cds = "~0.0.2"
14+
tree-sitter-cds = "~1.0.0"
1515
```
1616

1717
The below example demonstrates a simple program that parses a CDS

0 commit comments

Comments
 (0)