Skip to content

Commit

Permalink
Hotfix release 0.2.1, repair broken fsio import
Browse files Browse the repository at this point in the history
  • Loading branch information
fortysix2ahead committed Nov 15, 2023
1 parent d0e1688 commit 26d27c8
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 20 deletions.
17 changes: 3 additions & 14 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,10 @@
# Changelog

## rel-0.2.0 - 2023-11-15
## [0.2.1] - 2023-11-11

### What's Changed

- Consolidate configuration files by @fortysix2ahead in https://github.com/fortysix2ahead/synophotos/pull/6
- Add download of thumbnails by @fortysix2ahead in https://github.com/fortysix2ahead/synophotos/pull/11
- Add show command by @fortysix2ahead in https://github.com/fortysix2ahead/synophotos/pull/14
- Update platformdirs requirement from ~=3.11.0 to >=3.11,<4.1 by @dependabot in https://github.com/fortysix2ahead/synophotos/pull/13
- Add sync command by @fortysix2ahead in https://github.com/fortysix2ahead/synophotos/pull/15
- Added force flag by @fortysix2ahead in https://github.com/fortysix2ahead/synophotos/pull/18

### New Contributors

- @dependabot made their first contribution in https://github.com/fortysix2ahead/synophotos/pull/13
### Fixed

**Full Changelog**: https://github.com/fortysix2ahead/synophotos/compare/rel-0.1.2...rel-0.2.0
- Corrected broken fsio import

## [0.2.0] - 2023-11-15

Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "synophotos"
authors = [{ name = "fortysix2ahead", email = "[email protected]" }]
maintainers = [{ name = "fortysix2ahead", email = "[email protected]" }]
version = "0.2.0"
version = "0.2.1"
description = "Command Line Interface Client for Synology Photos"
readme = "README.md"
keywords = ["synology", "photos", "terminal", "cli", "command line"]
Expand Down Expand Up @@ -54,15 +54,15 @@ requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"

[tool.bumpver]
current_version = "0.2.0"
current_version = "0.2.1"
version_pattern = "MAJOR.MINOR.PATCH[-INC0]"
commit_message = "Increased version from {old_version} to {new_version}"
tag_message = "rel-{new_version}"
tag_scope = "default"
pre_commit_hook = ""
post_commit_hook = ""
commit = true
tag = true
commit = false
tag = false
push = false

[tool.bumpver.file_patterns]
Expand Down
2 changes: 1 addition & 1 deletion synophotos/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from synophotos.ui import dataclass_table
from synophotos.webservice import SynoSession, WebService

__version__ = '0.2.0'
__version__ = '0.2.1'

log = getLogger( __name__ )

Expand Down
2 changes: 1 addition & 1 deletion synophotos/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
from more_itertools import flatten
from yaml import safe_dump

from fsio import prepare_sync_albums, remove_item, write_item
from synophotos import ApplicationContext, __version__
from synophotos.fsio import prepare_sync_albums, remove_item, write_item
from synophotos.photos import SynoPhotos, ThumbnailSize
from synophotos.ui import confirm, pprint, pprint as pp, print_error, print_obj, print_obj_table, table_for

Expand Down
File renamed without changes.

0 comments on commit 26d27c8

Please sign in to comment.