Skip to content

Commit 13a37c3

Browse files
Prepare for v0.1.0
1 parent 8fbf4a4 commit 13a37c3

File tree

6 files changed

+13
-10
lines changed

6 files changed

+13
-10
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
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.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
---
9-
## [0.0.6] - Unreleased
9+
## [0.1.0] - 2025-10-13 - First beta release
1010

1111
### Added
1212
- Emojis: option to use custom mapping
@@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1515
### Changed
1616
- Child limit: do not print skipped children count
1717
- Max depth: do not print "max depth reached"
18+
- Refactor options packages
1819

1920
---
2021
## [0.0.5] - 2025-10-04

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,13 @@ For Maven, import this dependency to your `pom.xml`:
5555
<dependency>
5656
<groupId>io.github.computerdaddyguy</groupId>
5757
<artifactId>jfiletreeprettyprinter</artifactId>
58-
<version>0.0.5</version>
58+
<version>0.1.0</version>
5959
</dependency>
6060
```
6161

6262
For Gradle:
6363
```groovy
64-
implementation "io.github.computerdaddyguy:jfiletreeprettyprinter:0.0.5"
64+
implementation "io.github.computerdaddyguy:jfiletreeprettyprinter:0.1.0"
6565
```
6666

6767
# Basic usage

ROADMAP.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,18 +26,18 @@
2626
- [x] Jacoco coverage report
2727
- [x] Mutation testing
2828
- [x] SonarCloud integration
29-
- [x] **Workflows**
29+
- [x] **Workflows & lifecycle**
3030
- [x] Github actions
3131
- [x] Publish `0.0.x` alpha on Maven Central!
32+
- [x] Publish `0.x.0` beta on Maven Central!
3233

3334
## To do
3435
- [ ] Gather feedback
35-
- [ ] Publish `0.x.0` beta on Maven Central!
3636

3737
## Backlog / To analyze / To implement if requested
3838
- [ ] Rework/fix Github wiki to be up to date
3939
- [ ] Refactor unit tests (custom assert?)
40-
- [ ] Option: color
41-
- [ ] Option: Filename decorator
4240
- [ ] Option: Follow symlink
43-
- [ ] Advanced line extension function (file size, author, timestamps, etc. )
41+
- [ ] Export/import options in external file?
42+
- [ ] Maven plugin? (configurable)
43+
- [ ] Automate image creation? Which API/service?

SECURITY.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44

55
| Version | Supported |
66
| ------- | ------------------ |
7-
| 0.0.x | :white_check_mark: |
7+
| 0.0.x | :x: |
8+
| 0.x.x | :white_check_mark: |
89

910
## Reporting a Vulnerability
1011

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>io.github.computerdaddyguy</groupId>
77
<artifactId>jfiletreeprettyprinter</artifactId>
8-
<version>0.0.6-SNAPSHOT</version>
8+
<version>0.1.0-SNAPSHOT</version>
99

1010
<packaging>jar</packaging>
1111
<name>JFileTreePrettyPrinter</name>

release_process.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
- Update `README.md` (with new `X.Y.Z` dependency version)
1313
- Update `CHANGELOG.md` with changes
1414
- Update `ROADMAP.md` if necessary
15+
- Update `SECURITY.md` if necessary
1516
- Commit locally
1617
- Tag with appropriate `vX.Y.Z`
1718
- Push code & tags

0 commit comments

Comments
 (0)