Skip to content

Commit

Permalink
bumped version to v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
caronc committed Oct 8, 2022
1 parent 67070e5 commit 1228b38
Show file tree
Hide file tree
Showing 6 changed files with 38 additions and 22 deletions.
4 changes: 2 additions & 2 deletions Dockerfile.py35 → Dockerfile.py36
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Base
FROM python:3.5-buster
FROM python:3.6-buster
RUN apt-get update && \
apt-get install -y libdbus-1-dev build-essential musl-dev bash
RUN pip install dbus-python
Expand All @@ -10,7 +10,7 @@ WORKDIR /apprise
COPY requirements.txt /
COPY dev-requirements.txt /
ENV PYTHONPATH /apprise
ENV PYTHONPYCACHEPREFIX /apprise/__pycache__/py35
ENV PYTHONPYCACHEPREFIX /apprise/__pycache__/py36


RUN pip install -r /requirements.txt -r /dev-requirements.txt
2 changes: 1 addition & 1 deletion apprise/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
# THE SOFTWARE.

__title__ = 'Apprise'
__version__ = '1.0.0'
__version__ = '1.1.0'
__author__ = 'Chris Caron'
__license__ = 'MIT'
__copywrite__ = 'Copyright (C) 2022 Chris Caron <[email protected]>'
Expand Down
25 changes: 23 additions & 2 deletions apprise/i18n/apprise.pot
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: apprise 1.0.0\n"
"Project-Id-Version: apprise 1.1.0\n"
"Report-Msgid-Bugs-To: [email protected]\n"
"POT-Creation-Date: 2022-08-06 13:14-0400\n"
"POT-Creation-Date: 2022-10-08 14:03-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
Expand Down Expand Up @@ -242,6 +242,9 @@ msgstr ""
msgid "Flair Text"
msgstr ""

msgid "Flash"
msgstr ""

msgid "Footer Logo"
msgstr ""

Expand Down Expand Up @@ -430,6 +433,9 @@ msgstr ""
msgid "Remove Tokens"
msgstr ""

msgid "Reply To"
msgstr ""

msgid "Reply To Email"
msgstr ""

Expand All @@ -445,6 +451,9 @@ msgstr ""
msgid "Route"
msgstr ""

msgid "Route Group"
msgstr ""

msgid "Routing Key"
msgstr ""

Expand Down Expand Up @@ -529,6 +538,9 @@ msgstr ""
msgid "Target Chat ID"
msgstr ""

msgid "Target Contact"
msgstr ""

msgid "Target Device"
msgstr ""

Expand All @@ -547,6 +559,9 @@ msgstr ""
msgid "Target Escalation"
msgstr ""

msgid "Target Group"
msgstr ""

msgid "Target Group ID"
msgstr ""

Expand Down Expand Up @@ -613,6 +628,9 @@ msgstr ""
msgid "Tenant Domain"
msgstr ""

msgid "Test Only"
msgstr ""

msgid "Text To Speech"
msgstr ""

Expand Down Expand Up @@ -652,6 +670,9 @@ msgstr ""
msgid "URL Title"
msgstr ""

msgid "Unicode Characters"
msgstr ""

msgid "Urgency"
msgstr ""

Expand Down
20 changes: 6 additions & 14 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,9 @@
version: "3.3"
services:
test.py27:
build:
context: .
dockerfile: Dockerfile.py27
volumes:
- ./:/apprise

test.py35:
build:
context: .
dockerfile: Dockerfile.py35
dockerfile: Dockerfile.py36
volumes:
- ./:/apprise

Expand All @@ -22,21 +15,20 @@ services:
- ./:/apprise

# Connect to web and create a new project using the manage script
# -> docker-compose run --rm test.py27 bash
# -> docker-compose run --rm test.py36 bash
# bin/apprise -
# bin/checkdone.sh
#
# Run a set of tests for just a certain section
# docker-compose run --rm test.py27 bin/test.sh fcm
# docker-compose run --rm test.py36 bin/test.sh fcm
#
# Or just run all the tsts in python 2.7
# docker-compose run --rm test.py27 bin/test.sh
# Or just run all the tests in python 3.6
# docker-compose run --rm test.py36 bin/test.sh
#
# Want to run the whole test suite:
#
# [ -f .coverage ] && rm -f .coverage
# docker-compose run --rm test.py27 coverage run --append -m pytest -vv
# docker-compose run --rm test.py35 coverage run --append -m pytest -vv
# docker-compose run --rm test.py36 coverage run --append -m pytest -vv
# docker-compose run --rm test.py310 coverage run --append -m pytest -vv
#
# # Now produce a report
Expand Down
7 changes: 5 additions & 2 deletions packaging/redhat/python-apprise.spec
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ Streamlabs, Stride, Syslog, Techulus Push, Telegram, Twilio, Twitter, Twist,
XBMC, Vonage, Webex Teams}

Name: python-%{pypi_name}
Version: 1.0.0
Release: 3%{?dist}
Version: 1.1.0
Release: 1%{?dist}
Summary: A simple wrapper to many popular notification services used today
License: MIT
URL: https://github.com/caronc/%{pypi_name}
Expand Down Expand Up @@ -147,6 +147,9 @@ LANG=C.UTF-8 PYTHONPATH=%{buildroot}%{python3_sitelib} py.test-%{python3_version
%{python3_sitelib}/%{pypi_name}/cli.*

%changelog
* Sat Oct 8 2022 Chris Caron <[email protected]> - 1.1.0-1
- Updated to v1.1.0

* Fri Oct 7 2022 Chris Caron <[email protected]> - 1.0.0-3
- Python 2 Support dropped

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@

setup(
name='apprise',
version='1.0.0',
version='1.1.0',
description='Push Notifications that work with just about every platform!',
license='MIT',
long_description=open('README.md').read(),
Expand Down

0 comments on commit 1228b38

Please sign in to comment.