Skip to content

Commit

Permalink
camply 0.1.1 (#10)
Browse files Browse the repository at this point in the history
* exclude lottery sites

* version bump to 0.1.0

* updated badges

* updated CHANGELOG.md
  • Loading branch information
juftin authored May 19, 2021
1 parent 69cd144 commit a5f5b09
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM python:3.8-slim

MAINTAINER Justin Flannery <[email protected]>
LABEL version="0.1.0"
LABEL version="0.1.1"
LABEL description="camply, the campsite finder"

COPY . /tmp/camply
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
3 changes: 2 additions & 1 deletion camply/config/api_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,8 @@ class RecreationBookingConfig:
"Not Available",
"Not Reservable",
"Not Reservable Management",
"Not Available Cutoff"
"Not Available Cutoff",
"Lottery"
]

CAMPSITE_BASE: str = "campsites"
Expand Down
2 changes: 1 addition & 1 deletion camply/config/cli_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 👋"

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "camply"
version = "0.1.0"
version = "0.1.1"
description = "camply, the campsite finder ⛺️"
authors = ["Justin Flannery <[email protected]>"]
maintainers = ["Justin Flannery <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit a5f5b09

Please sign in to comment.