Skip to content

Commit decea42

Browse files
committed
chore: Bump version to 0.1.2 and fix missing writeAscii dependency
1 parent 3d27c16 commit decea42

3 files changed

Lines changed: 16 additions & 9 deletions

File tree

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# FastTerminal 0.1.1 [ALPHA] — High-Performance True-Color Terminal Engine for Java
1+
# FastTerminal 0.1.2 [ALPHA] — High-Performance True-Color Terminal Engine for Java
22

3-
[![Status](https://img.shields.io/badge/status-0.1.1-brightgreen.svg)](https://github.com/andrestubbe/FastTerminal/releases/tag/0.1.1)
3+
[![Status](https://img.shields.io/badge/status-0.1.2-brightgreen.svg)](https://github.com/andrestubbe/FastTerminal/releases/tag/0.1.2)
44
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
55
[![Java](https://img.shields.io/badge/Java-17+-blue.svg)](https://www.java.com)
66
[![Platform](https://img.shields.io/badge/Platform-Windows%2010+-lightgrey.svg)]()
@@ -163,14 +163,14 @@ Add the JitPack repository and the dependencies to your `pom.xml`:
163163
<dependency>
164164
<groupId>com.github.andrestubbe</groupId>
165165
<artifactId>fastterminal</artifactId>
166-
<version>0.1.1</version>
166+
<version>0.1.2</version>
167167
</dependency>
168168

169169
<!-- FastCore (Required Native Loader) -->
170170
<dependency>
171171
<groupId>com.github.andrestubbe</groupId>
172172
<artifactId>fastcore</artifactId>
173-
<version>0.1.1</version>
173+
<version>0.1.2</version>
174174
</dependency>
175175
</dependencies>
176176
```
@@ -183,7 +183,7 @@ repositories {
183183
}
184184
185185
dependencies {
186-
implementation 'com.github.andrestubbe:fastterminal:0.1.1'
186+
implementation 'com.github.andrestubbe:fastterminal:0.1.2'
187187
implementation 'com.github.andrestubbe:fastcore:0.1.0'
188188
}
189189
```
@@ -192,8 +192,8 @@ dependencies {
192192

193193
Download the latest JARs directly to add them to your classpath:
194194

195-
1. 📦 **[fastterminal-0.1.1.jar](https://github.com/andrestubbe/FastTerminal/releases/download/0.1.1/fastterminal-0.1.1.jar)** (The Core Library)
196-
2. ⚙️ **[fastcore-0.1.0.jar](https://github.com/andrestubbe/FastCore/releases/download/0.1.1/fastcore-0.1.0.jar)** (The Mandatory Native Loader)
195+
1. 📦 **[fastterminal-0.1.2.jar](https://github.com/andrestubbe/FastTerminal/releases/download/0.1.2/fastterminal-0.1.2.jar)** (The Core Library)
196+
2. ⚙️ **[fastcore-0.1.0.jar](https://github.com/andrestubbe/FastCore/releases/download/0.1.2/fastcore-0.1.0.jar)** (The Mandatory Native Loader)
197197

198198
> [!IMPORTANT]
199199
> All JARs must be in your classpath for the native JNI calls to function correctly.

docs/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
2323
- Text processing (UTF-8 Parser, Emoji Width Fixes, Word-Wrap, Text-Shaping)
2424
- Performance optimizations (SIMD-Blitting, Native Line-Drawing, GPU-Terminal-Mode)
2525

26+
## v0.1.2 [ALPHA] - FastASCII Method Patch
27+
- **Dependency Update**: Bumped FastASCII dependency to 0.1.1 to resolve missing writeAscii symbol during compilation.
28+
29+
## v0.1.1 [ALPHA] - FastASCII & FastANSI Upgrade
30+
- **FastASCII Integration**: Upgraded internal dependencies to use FastASCII 0.1.0 and FastANSI 0.1.1.
31+
- **Glyph Density Extracted**: FastGlyphDensity logic natively delegated to FastASCII.
32+
2633
## [0.1.0] - YYYY-MM-DD
2734

2835
### Added

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<groupId>com.github.andrestubbe</groupId>
99
<artifactId>FastTerminal</artifactId>
10-
<version>0.1.1</version>
10+
<version>0.1.2</version>
1111
<packaging>jar</packaging>
1212

1313
<name>FastTerminal</name>
@@ -96,7 +96,7 @@
9696
<dependency>
9797
<groupId>com.github.andrestubbe</groupId>
9898
<artifactId>FastASCII</artifactId>
99-
<version>0.1.0</version>
99+
<version>0.1.1</version>
100100
</dependency>
101101
<dependency>
102102
<groupId>org.junit.jupiter</groupId>

0 commit comments

Comments
 (0)