bumped version to v1.1.0

This commit is contained in:
Chris Caron 2022-10-08 14:05:28 -04:00
parent 67070e5932
commit 1228b3884e
6 changed files with 38 additions and 22 deletions

View File

@ -1,5 +1,5 @@
# Base # Base
FROM python:3.5-buster FROM python:3.6-buster
RUN apt-get update && \ RUN apt-get update && \
apt-get install -y libdbus-1-dev build-essential musl-dev bash apt-get install -y libdbus-1-dev build-essential musl-dev bash
RUN pip install dbus-python RUN pip install dbus-python
@ -10,7 +10,7 @@ WORKDIR /apprise
COPY requirements.txt / COPY requirements.txt /
COPY dev-requirements.txt / COPY dev-requirements.txt /
ENV PYTHONPATH /apprise ENV PYTHONPATH /apprise
ENV PYTHONPYCACHEPREFIX /apprise/__pycache__/py35 ENV PYTHONPYCACHEPREFIX /apprise/__pycache__/py36
RUN pip install -r /requirements.txt -r /dev-requirements.txt RUN pip install -r /requirements.txt -r /dev-requirements.txt

View File

@ -24,7 +24,7 @@
# THE SOFTWARE. # THE SOFTWARE.
__title__ = 'Apprise' __title__ = 'Apprise'
__version__ = '1.0.0' __version__ = '1.1.0'
__author__ = 'Chris Caron' __author__ = 'Chris Caron'
__license__ = 'MIT' __license__ = 'MIT'
__copywrite__ = 'Copyright (C) 2022 Chris Caron <lead2gold@gmail.com>' __copywrite__ = 'Copyright (C) 2022 Chris Caron <lead2gold@gmail.com>'

View File

@ -6,9 +6,9 @@
#, fuzzy #, fuzzy
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: apprise 1.0.0\n" "Project-Id-Version: apprise 1.1.0\n"
"Report-Msgid-Bugs-To: lead2gold@gmail.com\n" "Report-Msgid-Bugs-To: lead2gold@gmail.com\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" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -242,6 +242,9 @@ msgstr ""
msgid "Flair Text" msgid "Flair Text"
msgstr "" msgstr ""
msgid "Flash"
msgstr ""
msgid "Footer Logo" msgid "Footer Logo"
msgstr "" msgstr ""
@ -430,6 +433,9 @@ msgstr ""
msgid "Remove Tokens" msgid "Remove Tokens"
msgstr "" msgstr ""
msgid "Reply To"
msgstr ""
msgid "Reply To Email" msgid "Reply To Email"
msgstr "" msgstr ""
@ -445,6 +451,9 @@ msgstr ""
msgid "Route" msgid "Route"
msgstr "" msgstr ""
msgid "Route Group"
msgstr ""
msgid "Routing Key" msgid "Routing Key"
msgstr "" msgstr ""
@ -529,6 +538,9 @@ msgstr ""
msgid "Target Chat ID" msgid "Target Chat ID"
msgstr "" msgstr ""
msgid "Target Contact"
msgstr ""
msgid "Target Device" msgid "Target Device"
msgstr "" msgstr ""
@ -547,6 +559,9 @@ msgstr ""
msgid "Target Escalation" msgid "Target Escalation"
msgstr "" msgstr ""
msgid "Target Group"
msgstr ""
msgid "Target Group ID" msgid "Target Group ID"
msgstr "" msgstr ""
@ -613,6 +628,9 @@ msgstr ""
msgid "Tenant Domain" msgid "Tenant Domain"
msgstr "" msgstr ""
msgid "Test Only"
msgstr ""
msgid "Text To Speech" msgid "Text To Speech"
msgstr "" msgstr ""
@ -652,6 +670,9 @@ msgstr ""
msgid "URL Title" msgid "URL Title"
msgstr "" msgstr ""
msgid "Unicode Characters"
msgstr ""
msgid "Urgency" msgid "Urgency"
msgstr "" msgstr ""

View File

@ -1,16 +1,9 @@
version: "3.3" version: "3.3"
services: services:
test.py27:
build:
context: .
dockerfile: Dockerfile.py27
volumes:
- ./:/apprise
test.py35: test.py35:
build: build:
context: . context: .
dockerfile: Dockerfile.py35 dockerfile: Dockerfile.py36
volumes: volumes:
- ./:/apprise - ./:/apprise
@ -22,21 +15,20 @@ services:
- ./:/apprise - ./:/apprise
# Connect to web and create a new project using the manage script # 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/apprise -
# bin/checkdone.sh # bin/checkdone.sh
# #
# Run a set of tests for just a certain section # 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 # Or just run all the tests in python 3.6
# docker-compose run --rm test.py27 bin/test.sh # docker-compose run --rm test.py36 bin/test.sh
# #
# Want to run the whole test suite: # Want to run the whole test suite:
# #
# [ -f .coverage ] && rm -f .coverage # [ -f .coverage ] && rm -f .coverage
# docker-compose run --rm test.py27 coverage run --append -m pytest -vv # docker-compose run --rm test.py36 coverage run --append -m pytest -vv
# docker-compose run --rm test.py35 coverage run --append -m pytest -vv
# docker-compose run --rm test.py310 coverage run --append -m pytest -vv # docker-compose run --rm test.py310 coverage run --append -m pytest -vv
# #
# # Now produce a report # # Now produce a report

View File

@ -48,8 +48,8 @@ Streamlabs, Stride, Syslog, Techulus Push, Telegram, Twilio, Twitter, Twist,
XBMC, Vonage, Webex Teams} XBMC, Vonage, Webex Teams}
Name: python-%{pypi_name} Name: python-%{pypi_name}
Version: 1.0.0 Version: 1.1.0
Release: 3%{?dist} Release: 1%{?dist}
Summary: A simple wrapper to many popular notification services used today Summary: A simple wrapper to many popular notification services used today
License: MIT License: MIT
URL: https://github.com/caronc/%{pypi_name} URL: https://github.com/caronc/%{pypi_name}
@ -147,6 +147,9 @@ LANG=C.UTF-8 PYTHONPATH=%{buildroot}%{python3_sitelib} py.test-%{python3_version
%{python3_sitelib}/%{pypi_name}/cli.* %{python3_sitelib}/%{pypi_name}/cli.*
%changelog %changelog
* Sat Oct 8 2022 Chris Caron <lead2gold@gmail.com> - 1.1.0-1
- Updated to v1.1.0
* Fri Oct 7 2022 Chris Caron <lead2gold@gmail.com> - 1.0.0-3 * Fri Oct 7 2022 Chris Caron <lead2gold@gmail.com> - 1.0.0-3
- Python 2 Support dropped - Python 2 Support dropped

View File

@ -57,7 +57,7 @@ else:
setup( setup(
name='apprise', name='apprise',
version='1.0.0', version='1.1.0',
description='Push Notifications that work with just about every platform!', description='Push Notifications that work with just about every platform!',
license='MIT', license='MIT',
long_description=open('README.md').read(), long_description=open('README.md').read(),