diff --git a/.readthedocs.yml b/.readthedocs.yml index 8771949..e825944 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -26,4 +26,4 @@ formats: # Optionally declare the Python requirements required to build your docs python: install: - - requirements: requirements.txt \ No newline at end of file + - requirements: requirements-dev.txt \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 9631398..17f5f3a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,16 @@ 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.8.0] - 2022-11-29 + +### Added + +- Add requirements-dev.txt file + +### Changed + +- Update readthedocs.yml configuration file + ## [0.7.0] - 2022-11-29 ### Added @@ -117,6 +127,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - First release +[0.8.0]: https://github.com/batuhan0sanli/rclone-manager/compare/0.7.0...0.8.0 + [0.7.0]: https://github.com/batuhan0sanli/rclone-manager/compare/0.6.0...0.7.0 [0.6.0]: https://github.com/batuhan0sanli/rclone-manager/compare/0.5.0...0.6.0 diff --git a/rclone_manager/__version__.py b/rclone_manager/__version__.py index c646193..dc2c3a5 100644 --- a/rclone_manager/__version__.py +++ b/rclone_manager/__version__.py @@ -10,7 +10,7 @@ __title__ = "rclone-manager" __description__ = "Define multiple tasks using rclone." __url__ = "https://github.com/batuhan0sanli/rclone-manager" -__version__ = "0.7.0" +__version__ = "0.8.0" __author__ = "batuhan0sanli" __author_email__ = "batuhansanli@gmail.com" __license__ = "MIT" diff --git a/requirements-dev.txt b/requirements-dev.txt new file mode 100644 index 0000000..643e8ca --- /dev/null +++ b/requirements-dev.txt @@ -0,0 +1,7 @@ +# Install Package +APScheduler~=3.9.1 + +# Sphinx +Sphinx +sphinx_rtd_theme +sphinx_mdinclude~=0.5.3