Skip to content

Commit

Permalink
Release v0.0.4
Browse files Browse the repository at this point in the history
Set pypi module to production ready
  • Loading branch information
dormant-user committed Aug 1, 2024
1 parent ca7c62b commit 95beb5d
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ git2s3 start
- **AWS_BUCKET_NAME** - AWS bucket name to store the backups.
- **AWS_S3_PREFIX** - S3 prefix _(folder like)_ for the backup. Defaults to `github`
- **BOTO3_RETRY_ATTEMPTS** - Number of retries for Boto3 client config. Defaults to `10`
- **BOTO3_RETRY_MODE** - [Boto3 retry configuration] for S3 client. Defaults to `standard`
- **BOTO3_RETRY_MODE** - [Boto3 retry configuration][boto3-retry-config] for S3 client. Defaults to `standard`

## Coding Standards
Docstring format: [`Google`][google-docs] <br>
Expand Down Expand Up @@ -147,5 +147,5 @@ Licensed under the [MIT License][license]
[pypi-repo]: https://packaging.python.org/tutorials/packaging-projects/
[license]: https://github.com/thevickypedia/git2s3/blob/master/LICENSE
[runbook]: https://thevickypedia.github.io/git2s3/
[Boto3 retry configuration]: https://boto3.amazonaws.com/v1/documentation/api/latest/guide/retries.html#available-retry-modes
[boto3-retry-config]: https://boto3.amazonaws.com/v1/documentation/api/latest/guide/retries.html#available-retry-modes
[samples]: https://github.com/thevickypedia/git2s3/tree/main/samples
4 changes: 2 additions & 2 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ git2s3 start
- **AWS_BUCKET_NAME** - AWS bucket name to store the backups.
- **AWS_S3_PREFIX** - S3 prefix _(folder like)_ for the backup. Defaults to `github`
- **BOTO3_RETRY_ATTEMPTS** - Number of retries for Boto3 client config. Defaults to `10`
- **BOTO3_RETRY_MODE** - [Boto3 retry configuration] for S3 client. Defaults to `standard`
- **BOTO3_RETRY_MODE** - [Boto3 retry configuration][boto3-retry-config] for S3 client. Defaults to `standard`

## Coding Standards
Docstring format: [`Google`][google-docs] <br>
Expand Down Expand Up @@ -147,5 +147,5 @@ Licensed under the [MIT License][license]
[pypi-repo]: https://packaging.python.org/tutorials/packaging-projects/
[license]: https://github.com/thevickypedia/git2s3/blob/master/LICENSE
[runbook]: https://thevickypedia.github.io/git2s3/
[Boto3 retry configuration]: https://boto3.amazonaws.com/v1/documentation/api/latest/guide/retries.html#available-retry-modes
[boto3-retry-config]: https://boto3.amazonaws.com/v1/documentation/api/latest/guide/retries.html#available-retry-modes
[samples]: https://github.com/thevickypedia/git2s3/tree/main/samples
4 changes: 2 additions & 2 deletions docs/_sources/README.md.txt
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ git2s3 start
- **AWS_BUCKET_NAME** - AWS bucket name to store the backups.
- **AWS_S3_PREFIX** - S3 prefix _(folder like)_ for the backup. Defaults to `github`
- **BOTO3_RETRY_ATTEMPTS** - Number of retries for Boto3 client config. Defaults to `10`
- **BOTO3_RETRY_MODE** - [Boto3 retry configuration] for S3 client. Defaults to `standard`
- **BOTO3_RETRY_MODE** - [Boto3 retry configuration][boto3-retry-config] for S3 client. Defaults to `standard`

## Coding Standards
Docstring format: [`Google`][google-docs] <br>
Expand Down Expand Up @@ -147,5 +147,5 @@ Licensed under the [MIT License][license]
[pypi-repo]: https://packaging.python.org/tutorials/packaging-projects/
[license]: https://github.com/thevickypedia/git2s3/blob/master/LICENSE
[runbook]: https://thevickypedia.github.io/git2s3/
[Boto3 retry configuration]: https://boto3.amazonaws.com/v1/documentation/api/latest/guide/retries.html#available-retry-modes
[boto3-retry-config]: https://boto3.amazonaws.com/v1/documentation/api/latest/guide/retries.html#available-retry-modes
[samples]: https://github.com/thevickypedia/git2s3/tree/main/samples
2 changes: 1 addition & 1 deletion git2s3/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

from git2s3.main import Git2S3

version = "0.0.3"
version = "0.0.4"


@click.command()
Expand Down
2 changes: 1 addition & 1 deletion git2s3/squire.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def default_logger(env: config.EnvConfig) -> logging.Logger:
if not os.path.isdir("logs"):
os.mkdir("logs")
logfile: str = datetime.now().strftime(
os.path.join("logs", "pyfilebrowser_%d-%m-%Y.log")
os.path.join("logs", "git2s3_%d-%m-%Y.log")
)
handler = logging.FileHandler(filename=logfile)
else:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Development Status :: 5 - Production/Stable",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
Expand Down
10 changes: 10 additions & 0 deletions release_notes.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
Release Notes
=============

v0.0.4 (08/01/2024)
-------------------
- Release ``v0.0.4``
- **Full Changelog**: https://github.com/thevickypedia/git2s3/compare/0.0.3...v0.0.4

v0.0.3 (07/28/2024)
-------------------
- Release ``v0.0.3``
- **Full Changelog**: https://github.com/thevickypedia/git2s3/compare/0.0.2...v0.0.3

0.0.2 (07/28/2024)
------------------
- Create a backup approach for `GitPython`
Expand Down

0 comments on commit 95beb5d

Please sign in to comment.