diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index f99697b4..2b436acc 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -26,7 +26,7 @@ If applicable, add screenshots to help explain your problem. **Environment (please complete the following information):** - OS: [e.g. Windows, Mac, Linux, Docker] - Python Version [e.g. 3.6, 3.9] -- Camply Version [e.g. 0.1.0] +- Camply Version [e.g. 0.1.1] **Additional context** Add any other context about the problem here. \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index c172f6c4..ec330bc7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,9 +11,19 @@ versioning. ### Fixed -- Any bugs that surface will quickly have fixes quickly deployed before version +- Any bugs that surface will quickly have fixes quickly deployed before version `1.0.0` is released. +## [0.1.1] - 2021-05-18 + +### Added + +- Updating Badges + +### Fixed + +- Excluded `Lottery` sites from being returned + ## [0.1.0] - 2021-05-18 ### Added @@ -25,4 +35,6 @@ versioning. [unreleased]: https://github.com/juftin/camply/compare/main...integration +[0.1.1]: https://github.com/juftin/camply/compare/v0.1.0...v0.1.1 + [0.1.0]: https://github.com/juftin/camply/releases/tag/v0.1.0 diff --git a/Dockerfile b/Dockerfile index 5a94a9d9..11e71983 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM python:3.8-slim MAINTAINER Justin Flannery -LABEL version="0.1.0" +LABEL version="0.1.1" LABEL description="camply, the campsite finder" COPY . /tmp/camply diff --git a/README.md b/README.md index 50a6545c..71f22a70 100644 --- a/README.md +++ b/README.md @@ -12,11 +12,11 @@ becomes available, camply sends you a notification to book your spot! ___________ ___________ -[![Version](https://img.shields.io/static/v1?label=⛺️camply&message=0.1.0&color=blue)](https://github.com/juftin/camply) -[![Python Versions](https://img.shields.io/static/v1?label=Python&message=3.6%20|%203.7%20|%203.8%20|%203.9&color=blue&logo=python)](https://pypi.python.org/pypi/camply/) -[![Docker Version](https://img.shields.io/static/v1?label=Docker&message=0.1.0&color=blue&logo=docker)](https://hub.docker.com/r/juftin/camply) +[![PyPI](https://img.shields.io/pypi/v/camply?color=blue&label=⛺️camply)](https://github.com/juftin/camply) +[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/camply)](https://pypi.python.org/pypi/camply/) +[![Docker Image Version](https://img.shields.io/docker/v/juftin/camply?color=blue&label=docker&logo=docker)](https://hub.docker.com/r/juftin/camply) [![Testing Status](https://github.com/juftin/camply/actions/workflows/pytest.yml/badge.svg?branch=camply)](https://github.com/juftin/camply/actions/workflows/pytest.yml) -[![License](https://img.shields.io/static/v1?label=License&message=MIT&color=blue)](https://github.com/juftin/camply/blob/main/LICENSE) +[![GitHub License](https://img.shields.io/github/license/juftin/camply?color=blue&label=License)](https://github.com/juftin/camply/blob/main/LICENSE) ## Table of Contents diff --git a/camply/config/api_config.py b/camply/config/api_config.py index ebfa43e5..2d73ce3b 100644 --- a/camply/config/api_config.py +++ b/camply/config/api_config.py @@ -102,7 +102,8 @@ class RecreationBookingConfig: "Not Available", "Not Reservable", "Not Reservable Management", - "Not Available Cutoff" + "Not Available Cutoff", + "Lottery" ] CAMPSITE_BASE: str = "campsites" diff --git a/camply/config/cli_config.py b/camply/config/cli_config.py index 13d52694..c19917a6 100644 --- a/camply/config/cli_config.py +++ b/camply/config/cli_config.py @@ -122,7 +122,7 @@ class CommandLineConfig(CommandLineActions, CommandLineArguments, CommandLineVal """ CAMPLY_APP_NAME: str = "camply" - CAMPLY_APP_VERSION: str = "0.1.0" + CAMPLY_APP_VERSION: str = "0.1.1" CAMPLY_DESCRIPTION: str = "camply, the campsite finder" CAMPLY_EXIT_MESSAGE: str = "Exiting camply 👋" diff --git a/pyproject.toml b/pyproject.toml index e2e1d357..f9b5c09d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "camply" -version = "0.1.0" +version = "0.1.1" description = "camply, the campsite finder ⛺️" authors = ["Justin Flannery "] maintainers = ["Justin Flannery "] diff --git a/setup.py b/setup.py index 4885b992..b9b38d0b 100755 --- a/setup.py +++ b/setup.py @@ -36,7 +36,7 @@ setup_kwargs = { "name": "camply", - "version": "0.1.0", + "version": "0.1.1", "description": "camply, the campsite finder", "long_description": long_description, "long_description_content_type": "text/markdown",