diff --git a/CHANGELOG.md b/CHANGELOG.md index f619b48..72018f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,34 @@ All notable changes to this project will be documented in this file. +## [unreleased] + +### 🚀 Features + +- Compress files if they are smaller +- Start of install script for *nix +- Handle downloading compressed content +- Additional logging for uncompression. +- Support git submodules + +### 🐛 Bug Fixes + +- Remove the file after upload. +- 30 second timeout on update +- Don't compress file if it already exists +- Lock before upload to ensure only one client is uploading at once +- Readme +- Remember totp correctly +- Bug in login preventing totp from being saved. +- Use proper extension. rust doesn't return extensions with '.' +- Clippy errors + +### ⚙️ Miscellaneous Tasks + +- Prepare release +- Fix clippy errors +- Fix clippy errors + ## [0.3.0] - 2024-12-10 ### 🚀 Features diff --git a/Cargo.lock b/Cargo.lock index 7de1472..a8c39f9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -609,7 +609,7 @@ checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f" [[package]] name = "git-lfs-synology" -version = "0.3.0" +version = "0.4.0" dependencies = [ "aead", "aes-gcm", diff --git a/Cargo.toml b/Cargo.toml index 42fd53f..f96de07 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "git-lfs-synology" -version = "0.3.0" +version = "0.4.0" edition = "2021" [dependencies]