From 4937c4a5508361aedc0a2b31c8940343349bdab7 Mon Sep 17 00:00:00 2001 From: Jordan Doyle Date: Tue, 4 Jul 2023 20:42:47 +0100 Subject: [PATCH] Bump version to v0.1.1 --- CHANGELOG.md | 9 +++++++++ Cargo.toml | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..76683db --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,9 @@ +# v0.1.1 + +This release makes packfile generation deterministic by setting the committed and authored time to the unix epoch. Thanks @david-monroe for the contribution. + +A small bugfix is also included for blobs under 16 bytes emitting an invalid file size in the serialised packfile. + +# v0.1.0 + +Initial release diff --git a/Cargo.toml b/Cargo.toml index 5e7824f..4e4f004 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "packfile" authors = ["Jordan Doyle "] description = "A simple library providing utilities to generate Git Packfiles in memory and send them to clients" -version = "0.1.0" +version = "0.1.1" edition = "2021" license = "WTFPL" keywords = ["git", "packfile", "in-memory", "protocol"] -- libgit2 1.7.2