Skip to content

Commit

Permalink
Bump version to v0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tulir committed Oct 16, 2024
1 parent c3f7e22 commit a064159
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
# v0.8.1 (2024-10-16)

* **Breaking change *(lottie)*** Improved interface to take a destination file
name rather than returning bytes. The method was internally using a file
anyway, so forcing reading it into memory was a waste.
* *(ffmpeg)* Added `ConvertPathWithDestination` to specify destination file
manually.
* *(exhttp)* Added utility for applying middlewares to any HTTP handler.
* *(exfmt)* Made duration formatting more customizable.
* *(dbutil)* Changed table existence checks during schema upgrades to properly
return errors instead of panicking.
* *(dbutil)* Fixed `sqlite-fkey-off` transaction mode.

# v0.8.0 (2024-09-16)

* *(dbutil)* Changed litestream package to allow importing as no-op even when
Expand Down
2 changes: 1 addition & 1 deletion util.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

package util

const Version = "v0.8.0"
const Version = "v0.8.1"

func VersionArray() [3]uint {
return [3]uint{0, 8, 0}
Expand Down

0 comments on commit a064159

Please sign in to comment.