Compare commits

...

12 Commits

Author SHA1 Message Date
semantic-release-bot
da83d88229 chore(release): 1.7.2 [skip ci]
## [1.7.2](https://gitlab.evanrichardsonphotography.com/erichardson/py-eagle-mqtt/compare/v1.7.1...v1.7.2) (2021-04-08)

### Bug Fixes

* Cleanup CHANGELOG.md since using new semantic-release format ([a72ac7a](a72ac7a1df))
* fix asset info for git commit ([00c95c4](00c95c42ea))
2021-04-08 22:17:41 +00:00
evanrich
00c95c42ea fix: fix asset info for git commit 2021-04-08 15:16:21 -07:00
evanrich
a72ac7a1df fix: Cleanup CHANGELOG.md since using new semantic-release format
fix: Remove package-lock.json file (only commit CHANGELOG.md)
2021-04-08 15:11:32 -07:00
semantic-release-bot
ffbde1eff5 chore(release): 1.7.1 [skip ci]
## [1.7.1](https://gitlab.evanrichardsonphotography.com/erichardson/py-eagle-mqtt/compare/v1.7.0...v1.7.1) (2021-04-08)

### Bug Fixes

* refactor Dockerfile to improve build ([40ac8c5](40ac8c5ada))
2021-04-08 22:06:11 +00:00
1e58da7572 Merge branch 'dev' into 'master'
fix: refactor Dockerfile to improve build

See merge request erichardson/py-eagle-mqtt!2
2021-04-08 22:04:41 +00:00
evanrich
40ac8c5ada fix: refactor Dockerfile to improve build 2021-04-08 14:59:58 -07:00
evanrich
2c49af0f32 Merge branch 'master' of https://gitlab.evanrichardsonphotography.com/erichardson/py-eagle-mqtt 2021-04-08 14:47:21 -07:00
evanrich
a4c715068d Fix: Commit 3.9.4-alpine3.13 base change 2021-04-08 14:44:39 -07:00
91b6464e8c build: add missing npm install for git plugin 2021-04-08 21:34:14 +00:00
b9ad4e8ec1 build: add git plugin to sematic-release config file 2021-04-08 21:31:46 +00:00
evanrich
ac8c039b33 feat: remove astral again to try and fix semver (again?) 2021-04-07 15:12:30 -07:00
Evan Richardson
46cc86ed0b revert: add astral back in due to mistake in release system 2021-04-07 15:08:19 -07:00
4 changed files with 19 additions and 10 deletions

View File

@@ -81,7 +81,7 @@ release:
- /^([0-9]+)\.([0-9]+)\.([0-9]+)(?:-([0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*))?(?:\+[0-9A-Za-z-]+)?$/ - /^([0-9]+)\.([0-9]+)\.([0-9]+)(?:-([0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*))?(?:\+[0-9A-Za-z-]+)?$/
script: script:
- touch CHANGELOG.md - touch CHANGELOG.md
- npm install @semantic-release/gitlab @semantic-release/changelog - npm install @semantic-release/gitlab @semantic-release/changelog @semantic-release/git
- npx semantic-release - npx semantic-release
artifacts: artifacts:
paths: paths:

View File

@@ -4,6 +4,8 @@ plugins:
- - "@semantic-release/changelog" - - "@semantic-release/changelog"
- changelogFile: CHANGELOG.md - changelogFile: CHANGELOG.md
- "@semantic-release/gitlab" - "@semantic-release/gitlab"
- - "@semantic-release/git"
- assets: CHANGELOG.md
branches: branches:
- "master" - "master"
- "+([0-9])?(.{+([0-9]),x}).x" - "+([0-9])?(.{+([0-9]),x}).x"

View File

@@ -1,9 +1,17 @@
# Changelog ## [1.7.2](https://gitlab.evanrichardsonphotography.com/erichardson/py-eagle-mqtt/compare/v1.7.1...v1.7.2) (2021-04-08)
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/), ### Bug Fixes
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
* Cleanup CHANGELOG.md since using new semantic-release format ([a72ac7a](https://gitlab.evanrichardsonphotography.com/erichardson/py-eagle-mqtt/commit/a72ac7a1df91cb2231e38e8bbceb5ccf9c93328a))
* fix asset info for git commit ([00c95c4](https://gitlab.evanrichardsonphotography.com/erichardson/py-eagle-mqtt/commit/00c95c42ea98921a1b2da9d2069d41e8e32f34f5))
## [1.7.1](https://gitlab.evanrichardsonphotography.com/erichardson/py-eagle-mqtt/compare/v1.7.0...v1.7.1) (2021-04-08)
### Bug Fixes
* refactor Dockerfile to improve build ([40ac8c5](https://gitlab.evanrichardsonphotography.com/erichardson/py-eagle-mqtt/commit/40ac8c5ada9b993f53b72dcc14b2d9b7cd183e2f))
## [1.6.10] - 2021-04-06 ## [1.6.10] - 2021-04-06

View File

@@ -1,17 +1,16 @@
FROM python:3.9.3-alpine3.12 FROM python:3.9.4-alpine3.13
LABEL maintainer="Evan Richardson (evanrich81[at]gmail.com)" LABEL maintainer="Evan Richardson (evanrich81[at]gmail.com)"
LABEL version="1.6.6" LABEL version="1.7.0"
WORKDIR /app WORKDIR /app
COPY . /app COPY requirements.txt /app
COPY ./src/conf/logrotate/tHome /etc/logrotate.d/ COPY ./src/conf/logrotate/tHome /etc/logrotate.d/
ENV PYTHONPATH=/app/src/python ENV PYTHONPATH=/app/src/python
RUN apk --update add --no-cache logrotate \ RUN apk --update add --no-cache logrotate \
&& pip3 install --no-cache-dir --upgrade pip \ && pip3 install --no-cache-dir --upgrade pip \
&& pip3 install --no-cache-dir -r requirements.txt && pip3 install --no-cache-dir -r requirements.txt
#RUN rm -rf /var/cache/apk COPY . /app
CMD ["/app/src/bin/tHome-eagle.py", "-c", "/app/src/conf"] CMD ["/app/src/bin/tHome-eagle.py", "-c", "/app/src/conf"]
EXPOSE 22042 EXPOSE 22042