Skip to content

Commit 5604290

Browse files
Update version to 1.0.5 in build.gradle, CHANGELOG.md, and README.md for release
1 parent 31c32b0 commit 5604290

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ All notable changes to this project will be documented in this file.
44

55
This project adheres to Semantic Versioning and follows a Keep a Changelog-like format.
66

7-
## [0.1.5] - 2025-11-23
7+
## [1.0.5] - 2025-11-23
88

99
### Added
1010

1111
- Key Folding Option with folding death
1212
- Added unit tests for PrimitiveDecoder to validate handling of primitives and edge cases.
13-
- Added unit tests for StringValidator, covering the updated pattern evaluation order.
13+
- Added unit tests for StringValidator, covering the updated pattern evaluation order.
1414

1515
### Changed
1616

@@ -91,7 +91,7 @@ This project adheres to Semantic Versioning and follows a Keep a Changelog-like
9191
- Delimiter options (comma, tab, pipe) and optional length marker.
9292
- Comprehensive README with specification overview and examples.
9393

94-
[0.1.5]: https://github.com/toon-format/toon-java/releases/tag/v0.1.5
94+
[1.0.5]: https://github.com/toon-format/toon-java/releases/tag/v1.0.5
9595
[0.1.4]: https://github.com/toon-format/toon-java/releases/tag/v0.1.4
9696
[0.1.3]: https://github.com/toon-format/toon-java/releases/tag/v0.1.3
9797
[0.1.2]: https://github.com/toon-format/toon-java/releases/tag/v0.1.2

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![Maven Central](https://img.shields.io/maven-central/v/dev.toonformat/jtoon.svg)](https://central.sonatype.com/artifact/dev.toonformat/jtoon)
66
![Coverage](.github/badges/jacoco.svg)
77

8-
> **⚠️ Beta Status (v0.1.x):** This library is in active development and working towards spec compliance. Beta published to Maven Central. API may change before 1.0.0 release.
8+
> **⚠️ Beta Status (v1.x.x):** This library is in active development and working towards spec compliance. Beta published to Maven Central. API may change before 2.0.0 release.
99
1010
Compact, human-readable serialization format for LLM contexts with **30-60% token reduction** vs JSON. Combines YAML-like indentation with CSV-like tabular arrays. Working towards full compatibility with the [official TOON specification](https://github.com/toon-format/spec).
1111

@@ -21,15 +21,15 @@ JToon is available on Maven Central. Add it to your project using your preferred
2121

2222
```gradle
2323
dependencies {
24-
implementation 'dev.toonformat:jtoon:0.1.5'
24+
implementation 'dev.toonformat:jtoon:1.0.5'
2525
}
2626
```
2727

2828
**Gradle (Kotlin DSL):**
2929

3030
```kotlin
3131
dependencies {
32-
implementation("dev.toonformat:jtoon:0.1.5")
32+
implementation("dev.toonformat:jtoon:1.0.5")
3333
}
3434
```
3535

@@ -39,7 +39,7 @@ dependencies {
3939
<dependency>
4040
<groupId>dev.toonformat</groupId>
4141
<artifactId>jtoon</artifactId>
42-
<version>0.1.5</version>
42+
<version>1.0.5</version>
4343
</dependency>
4444
```
4545

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
}
77

88
group = 'dev.toonformat'
9-
version = providers.gradleProperty('version').getOrElse('0.1.5')
9+
version = providers.gradleProperty('version').getOrElse('1.0.5')
1010
description = 'Token-Oriented Object Notation (TOON) - A compact, human-readable format for LLM contexts'
1111

1212
// Apply external Gradle scripts

0 commit comments

Comments
 (0)