Skip to content

Commit

Permalink
chore: Release 0.8.1
Browse files Browse the repository at this point in the history
Although it was already released, this at least makes it "official" with
a blog post and changes to readme.
  • Loading branch information
hkupty committed Oct 23, 2024
1 parent f674c6b commit b97620e
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ In order to use it, add it to the [build manager of your preference](https://mvn

```groovy
// gradle
runtimeOnly 'com.hkupty.penna:penna-core:0.8.0'
runtimeOnly 'com.hkupty.penna:penna-core:0.8.1'
// Penna doesn't have any strict dependencies aside from slf4j.
implementation 'org.slf4j:slf4j-api:2.0.12'
Expand Down Expand Up @@ -74,7 +74,7 @@ loggers:
If you want to use [penna-yaml-config](penna-yaml-config/README.md), you have to add it as a dependency:
```groovy
runtimeOnly 'com.hkupty.penna:penna-yaml-config:0.8.0'
runtimeOnly 'com.hkupty.penna:penna-yaml-config:0.8.1'

// penna-yaml-config is a thin layer and uses a yaml parsing libray under the hood.
// You can chose among jackson, snakeyaml (yaml 1.1) or snakeyaml engine (yaml 1.2)
Expand Down
21 changes: 21 additions & 0 deletions www/content/blog/0.8.1-release.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
title: "0.8.1 Release"
date: 2024-10-22T19:49:47+02:00
description: "Minor fix in version reporting"
tags:
- release
---

As a one-man project, things usually tend to move slowly, but thankfully there are amazing people out there with a keen eye and generous heart proving open-source is the best way for software development!

<!--more-->

## Version is now properly reported on audit log

Since the last release, Penna ships with a single audit log in cases of everything working out successfully, in which it reports which version it's using for runtime. This is helpful to debug any unintended behavior, for example, in cases where library versions might clash and cause a classpath issue - though usually this shouldn't happen if you bundle Penna as a runtime-only dependency for your application.

Anyway, previously, however, this was broken due to an issue with how the JAR was packaged and this was spotted and fixed by the fantastic [Mark Sailes](https://www.linkedin.com/in/mark-sailes/). Thanks a lot!

## Final words

This is a small release but hopefully a very meaningful one as I feel Penna is reaching a point where it is no longer too experimental and can be used in production. As always, feel free to reach out in any way if you have any issues or questions and all sorts of feedback are very welcome.
2 changes: 1 addition & 1 deletion www/data/links.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
---
repoURL: https://github.com/hkupty/penna
currentVersion: 0.8.0
currentVersion: 0.8.1

0 comments on commit b97620e

Please sign in to comment.