Skip to content

Commit 8455c1b

Browse files
authored
Merge pull request #1154 from jookies/0.11-develop
0.11.0
2 parents 9810625 + 2ed4a3e commit 8455c1b

13 files changed

Lines changed: 54 additions & 47 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@ on:
88
branches:
99
- 'master'
1010
- '0.10-develop'
11-
- '0.10.*'
1211
- '0.11-develop'
13-
- '0.11.*'
1412

1513
env:
1614
GITHUB_TOKEN: ${{ secrets.COVERALLS_TOKEN }}
@@ -29,7 +27,7 @@ jobs:
2927
- 6379:6379
3028
strategy:
3129
matrix:
32-
python: [3.7, 3.8, 3.9, '3.10', 3.11]
30+
python: [3.8, 3.9, '3.10', 3.11, 3.12]
3331
steps:
3432
- uses: actions/checkout@v2
3533
- name: Install os dependencies

.readthedocs.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
version: 2
2+
3+
build:
4+
os: ubuntu-22.04
5+
tools:
6+
python: "3.12"
7+
sphinx:
8+
configuration: misc/doc/sources/conf.py
9+
formats:
10+
- epub
111
python:
2-
extra_requirements:
3-
- renku-sphinx-theme
12+
install:
13+
- requirements: misc/doc/requirements.txt

docker/Dockerfile.alpine

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3-alpine
1+
FROM python:3.11-alpine
22

33
MAINTAINER Jookies LTD <jasmin@jookies.net>
44

docker/Dockerfile.restapi.alpine

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3-alpine
1+
FROM python:3.11-alpine
22

33
MAINTAINER Jookies LTD <jasmin@jookies.net>
44

jasmin/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
import re
77

88
MAJOR = 0
9-
MINOR = 10
10-
PATCH = 14
9+
MINOR = 11
10+
PATCH = 0
1111
META = ''
1212

1313

misc/doc/requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
furo~=2023.9.10

misc/doc/sources/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@
3636
# built documents.
3737
#
3838
# The short X.Y version.
39-
version = "0.10"
39+
version = "0.11"
4040
# The full version, including alpha/beta/rc tags.
41-
release = "0.10.14"
41+
release = "0.11.0"
4242

4343
# The language for content autogenerated by Sphinx. Refer to documentation
4444
# for a list of supported languages.
@@ -79,7 +79,7 @@
7979

8080
# The theme to use for HTML and HTML Help pages. See the documentation for
8181
# a list of builtin themes.
82-
html_theme = "renku"
82+
html_theme = "furo"
8383

8484
# Theme options are theme-specific and customize the look and feel of a theme
8585
# further. For a list of options available for each theme, see the

misc/doc/sources/index.rst

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,6 @@ Based on strong message routing algorithms, Jasmin provides flexibility to defin
88

99
Jasmin is written in Python and Twisted framework for serving highly scalable applications, SMS message delivery can be done through HTTP and SMPP protocols, intelligent routing can be configured in real-time through an API, cli interface or a web backend [1]_.
1010

11-
.. figure:: https://opensource.nyc3.cdn.digitaloceanspaces.com/attribution/assets/PoweredByDO/DO_Powered_by_Badge_blue.svg
12-
:target: https://www.digitalocean.com/
13-
:alt: Powered by DigitalOcean
14-
:align: Center
15-
:width: 210px
16-
:scale: 80 %
17-
1811
Features
1912
********
2013

misc/pylint/pylintrc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ profile=no
1212

1313
# Add files or directories to the blacklist. They should be base names, not
1414
# paths.
15-
ignore=.gitignore,vendor,tests,test
15+
ignore=.gitignore,vendor,tests,test,misc,kubernetes,docker
1616

1717
# Pickle collected data for later comparisons.
1818
persistent=no
@@ -33,7 +33,7 @@ load-plugins=
3333
# can either give multiple identifier separated by comma (,) or put this option
3434
# multiple time (only on the command line, not in the configuration file where
3535
# it should appear only once).
36-
disable=E1101,E1102,E1103,E0601,R0801,R0902,R0903,R0904,R0913,W0614,W0232,W0613,W0201,W0703,W0511,W0233,W0702,W0150,W0104,R0911,W0221,E0611,F0401
36+
disable=E1101,E1102,E1103,E0601,R0801,R0902,R0903,R0904,R0913,W0614,W0613,W0201,W0703,W0511,W0233,W0702,W0150,W0104,R0911,W0221,E0611,F0401
3737

3838

3939
[REPORTS]

nfpm.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: "jasmin-sms-gateway"
22
arch: "amd64"
33
platform: "linux"
4-
version: "v0.10.14"
4+
version: "v0.11.0"
55
section: "default"
66
priority: "extra"
77
maintainer: "Jookies LTD <jasmin@jookies.net>"
@@ -83,7 +83,7 @@ scripts:
8383
overrides:
8484
deb:
8585
depends:
86-
- python3 (>= 3.7)
86+
- python3 (>= 3.8)
8787
- adduser
8888
- python3-twisted
8989
- python3-dateutil
@@ -108,7 +108,7 @@ overrides:
108108
rpm:
109109
depends:
110110
- epel-release
111-
- python3 (>= 3.7)
111+
- python3 (>= 3.8)
112112
- python3-twisted
113113
- python3-dateutil
114114
- python3-pyparsing

0 commit comments

Comments
 (0)