Skip to content

Commit b990eb6

Browse files
committed
chore: bump version
1 parent 3bc7591 commit b990eb6

3 files changed

Lines changed: 29 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,33 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

88
<!-- insertion marker -->
9+
## [v0.0.10](https://github.com/DataShades/file-keeper/releases/tag/v0.0.10) - 2025-07-13
10+
11+
<small>[Compare with v0.0.9](https://github.com/DataShades/file-keeper/compare/v0.0.9...v0.0.10)</small>
12+
13+
### Features
14+
15+
- add public_prefix(and permanent_link) to libcloud ([3bc7591](https://github.com/DataShades/file-keeper/commit/3bc759105f2d332b329af8b45e04fe2360d5928e) by Sergey Motornyuk).
16+
- static_uuid transformer ([88383e0](https://github.com/DataShades/file-keeper/commit/88383e05c993b156d6a6253e43ef8902e13b3d9f) by Sergey Motornyuk).
17+
- location transformers receive optional upload-or-data second argument ([8e6a6dc](https://github.com/DataShades/file-keeper/commit/8e6a6dc41d50fbcd6e2be8d984673f667333f1c2) by Sergey Motornyuk).
18+
19+
### Bug Fixes
20+
21+
- fix_extension transformer raises an error when upload is missing ([a827df5](https://github.com/DataShades/file-keeper/commit/a827df57168dab6e6d05e82bf9e6d680e25faed3) by Sergey Motornyuk).
22+
23+
## [v0.0.9](https://github.com/DataShades/file-keeper/releases/tag/v0.0.9) - 2025-07-02
24+
25+
<small>[Compare with v0.0.8](https://github.com/DataShades/file-keeper/compare/v0.0.8...v0.0.9)</small>
26+
27+
### Features
28+
29+
- add fix_extension transformer ([1345915](https://github.com/DataShades/file-keeper/commit/13459159fa22a50688d4d224942b383f54c5345e) by Sergey Motornyuk).
30+
- opendal got path option ([d044ade](https://github.com/DataShades/file-keeper/commit/d044ade99fa8139f2ff661bfbd03bf599363ad19) by Sergey Motornyuk).
31+
32+
### Bug Fixes
33+
34+
- cast fs:multipart:position to int ([dc4d768](https://github.com/DataShades/file-keeper/commit/dc4d7686d00f1bae401e5c018e98c49a2ea5f40a) by Sergey Motornyuk).
35+
936
## [v0.0.8](https://github.com/DataShades/file-keeper/releases/tag/v0.0.8) - 2025-04-23
1037

1138
<small>[Compare with v0.0.7](https://github.com/DataShades/file-keeper/compare/v0.0.7...v0.0.8)</small>

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ help:
66

77

88
changelog: ## compile changelog
9-
git changelog -c conventional -o CHANGELOG.md $(if $(bump),-B $(bump)) -R
9+
git changelog -c conventional -o CHANGELOG.md $(if $(bump),-B $(bump))
1010

1111
deploy-docs: ## build and publish documentation
1212
mkdocs gh-deploy

src/file_keeper/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.0.9"
1+
__version__ = "0.0.10"
22

33
from .core import exceptions as exc
44
from .core import types

0 commit comments

Comments
 (0)