From febed08c996d577695458dd00ec9f072b22cfc73 Mon Sep 17 00:00:00 2001 From: Fabio Caccamo Date: Tue, 19 Dec 2023 17:57:13 +0100 Subject: [PATCH] Update `CHANGELOG` and version. --- CHANGELOG.md | 6 ++++++ fsutil/metadata.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e33a77..5dfcef3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.13.0](https://github.com/fabiocaccamo/python-fsutil/releases/tag/0.13.0) - 2023-12-19 +- Add `get_permissions` and `set_permissions` methods. +- Fix permissions lost when using `write_file` with `atomic=True`. #94 +- Improve `write_file` with `atomic=True` atomicity. #91 +- Remove tests duplicated code. + ## [0.12.0](https://github.com/fabiocaccamo/python-fsutil/releases/tag/0.12.0) - 2023-12-11 - Add possibility to write files atomically (`fsutil.write_file(path, content, atomic=True)`). #91 diff --git a/fsutil/metadata.py b/fsutil/metadata.py index 71da677..f5dfa72 100644 --- a/fsutil/metadata.py +++ b/fsutil/metadata.py @@ -4,4 +4,4 @@ __email__ = "fabio.caccamo@gmail.com" __license__ = "MIT" __title__ = "python-fsutil" -__version__ = "0.12.0" +__version__ = "0.13.0"