Skip to content

Commit a5f5b09

Browse files
authored
camply 0.1.1 (#10)
* exclude lottery sites * version bump to 0.1.0 * updated badges * updated CHANGELOG.md
1 parent 69cd144 commit a5f5b09

File tree

8 files changed

+24
-11
lines changed

8 files changed

+24
-11
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ If applicable, add screenshots to help explain your problem.
2626
**Environment (please complete the following information):**
2727
- OS: [e.g. Windows, Mac, Linux, Docker]
2828
- Python Version [e.g. 3.6, 3.9]
29-
- Camply Version [e.g. 0.1.0]
29+
- Camply Version [e.g. 0.1.1]
3030

3131
**Additional context**
3232
Add any other context about the problem here.

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,19 @@ versioning.
1111

1212
### Fixed
1313

14-
- Any bugs that surface will quickly have fixes quickly deployed before version
14+
- Any bugs that surface will quickly have fixes quickly deployed before version
1515
`1.0.0` is released.
1616

17+
## [0.1.1] - 2021-05-18
18+
19+
### Added
20+
21+
- Updating Badges
22+
23+
### Fixed
24+
25+
- Excluded `Lottery` sites from being returned
26+
1727
## [0.1.0] - 2021-05-18
1828

1929
### Added
@@ -25,4 +35,6 @@ versioning.
2535

2636
[unreleased]: https://github.com/juftin/camply/compare/main...integration
2737

38+
[0.1.1]: https://github.com/juftin/camply/compare/v0.1.0...v0.1.1
39+
2840
[0.1.0]: https://github.com/juftin/camply/releases/tag/v0.1.0

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM python:3.8-slim
22

33
MAINTAINER Justin Flannery <juftin@juftin.com>
4-
LABEL version="0.1.0"
4+
LABEL version="0.1.1"
55
LABEL description="camply, the campsite finder"
66

77
COPY . /tmp/camply

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ becomes available, camply sends you a notification to book your spot!
1212
___________
1313
___________
1414

15-
[![Version](https://img.shields.io/static/v1?label=⛺️camply&message=0.1.0&color=blue)](https://github.com/juftin/camply)
16-
[![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/)
17-
[![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)
15+
[![PyPI](https://img.shields.io/pypi/v/camply?color=blue&label=⛺️camply)](https://github.com/juftin/camply)
16+
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/camply)](https://pypi.python.org/pypi/camply/)
17+
[![Docker Image Version](https://img.shields.io/docker/v/juftin/camply?color=blue&label=docker&logo=docker)](https://hub.docker.com/r/juftin/camply)
1818
[![Testing Status](https://github.com/juftin/camply/actions/workflows/pytest.yml/badge.svg?branch=camply)](https://github.com/juftin/camply/actions/workflows/pytest.yml)
19-
[![License](https://img.shields.io/static/v1?label=License&message=MIT&color=blue)](https://github.com/juftin/camply/blob/main/LICENSE)
19+
[![GitHub License](https://img.shields.io/github/license/juftin/camply?color=blue&label=License)](https://github.com/juftin/camply/blob/main/LICENSE)
2020

2121
## Table of Contents
2222

camply/config/api_config.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,8 @@ class RecreationBookingConfig:
102102
"Not Available",
103103
"Not Reservable",
104104
"Not Reservable Management",
105-
"Not Available Cutoff"
105+
"Not Available Cutoff",
106+
"Lottery"
106107
]
107108

108109
CAMPSITE_BASE: str = "campsites"

camply/config/cli_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ class CommandLineConfig(CommandLineActions, CommandLineArguments, CommandLineVal
122122
"""
123123

124124
CAMPLY_APP_NAME: str = "camply"
125-
CAMPLY_APP_VERSION: str = "0.1.0"
125+
CAMPLY_APP_VERSION: str = "0.1.1"
126126
CAMPLY_DESCRIPTION: str = "camply, the campsite finder"
127127
CAMPLY_EXIT_MESSAGE: str = "Exiting camply 👋"
128128

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "camply"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
description = "camply, the campsite finder ⛺️"
55
authors = ["Justin Flannery <juftin@juftin.com>"]
66
maintainers = ["Justin Flannery <juftin@juftin.com>"]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
setup_kwargs = {
3838
"name": "camply",
39-
"version": "0.1.0",
39+
"version": "0.1.1",
4040
"description": "camply, the campsite finder",
4141
"long_description": long_description,
4242
"long_description_content_type": "text/markdown",

0 commit comments

Comments
 (0)