diff --git a/README.md b/README.md index 55d1690..6574ae6 100644 --- a/README.md +++ b/README.md @@ -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]
@@ -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 diff --git a/docs/README.md b/docs/README.md index 55d1690..6574ae6 100644 --- a/docs/README.md +++ b/docs/README.md @@ -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]
@@ -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 diff --git a/docs/_sources/README.md.txt b/docs/_sources/README.md.txt index 55d1690..6574ae6 100644 --- a/docs/_sources/README.md.txt +++ b/docs/_sources/README.md.txt @@ -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]
@@ -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 diff --git a/git2s3/__init__.py b/git2s3/__init__.py index 930ae7c..a9f2011 100644 --- a/git2s3/__init__.py +++ b/git2s3/__init__.py @@ -6,7 +6,7 @@ from git2s3.main import Git2S3 -version = "0.0.3" +version = "0.0.4" @click.command() diff --git a/git2s3/squire.py b/git2s3/squire.py index c68004e..bd8def9 100644 --- a/git2s3/squire.py +++ b/git2s3/squire.py @@ -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: diff --git a/pyproject.toml b/pyproject.toml index a56d495..7f23408 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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", diff --git a/release_notes.rst b/release_notes.rst index a9f35af..4af210a 100644 --- a/release_notes.rst +++ b/release_notes.rst @@ -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`