Skip to content

Commit 056d474

Browse files
committed
chore: add CHANGELOG and modify version
1 parent 121625d commit 056d474

File tree

3 files changed

+29
-1
lines changed

3 files changed

+29
-1
lines changed

CHANGELOG

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# CHANGELOG
2+
3+
## [0.2.0] - 2025-04-04
4+
5+
### Improvements
6+
- Significant performance enhancement
7+
8+
## [0.1.0] - 2025-03-21
9+
10+
### Added
11+
- Initial release
12+
- PostgreSQL 17 syntax support
13+
- CST generation functionality following [gram.y](https://github.com/postgres/postgres/blob/REL_17_0/src/backend/parser/gram.y) structure
14+
- Pure Rust implementation enabling WebAssembly compilation via wasm-bindgen
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# CHANGELOG
2+
3+
## [0.2.0] - 2025-04-04
4+
5+
### Improvements
6+
- Significant performance enhancement
7+
8+
## [0.1.0] - 2025-03-21
9+
10+
### Added
11+
- Initial release
12+
- PostgreSQL 17 syntax support
13+
- CST generation functionality following [gram.y](https://github.com/postgres/postgres/blob/REL_17_0/src/backend/parser/gram.y) structure
14+
- Pure Rust implementation enabling WebAssembly compilation via wasm-bindgen

crates/postgresql-cst-parser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "postgresql-cst-parser"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
repository = "https://github.com/tanzaku/postgresql-cst-parser"
66
description = "An unofficial PostgreSQL CST parser written in Pure Rust."

0 commit comments

Comments
 (0)