Skip to content

Commit 1330595

Browse files
committed
Release 2.2.4
1 parent c4ecb5d commit 1330595

File tree

4 files changed

+45
-11
lines changed

4 files changed

+45
-11
lines changed

.circleci/config.yml

Lines changed: 39 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,34 @@ jobs:
2525
- run: python3-coverage run setup.py test
2626
# - codecov/upload:
2727
# when: on_success
28-
build:
28+
build_bionic:
2929
docker:
3030
- image: ubuntu:bionic
3131
environment:
3232
LANG: C.UTF-8
3333
DEBIAN_FRONTEND: noninteractive
3434
steps:
3535
- checkout
36+
- run: sed -i 's/convertit (\([0-9]\+\.[0-9]\+\.[0-9]\+\)\(.*\)) RELEASED;/convertit (\1.ubuntu20.04\2) focal;/' debian/changelog
37+
- run: apt-get update -q
38+
- run: >
39+
apt-get update && apt-get install -y
40+
dh-virtualenv dpkg-dev debhelper dh-python python3-setuptools python3-all
41+
python3-venv
42+
unoconv inkscape
43+
- run: dpkg-buildpackage -uc -us
44+
- persist_to_workspace:
45+
root: /root
46+
paths: convertit_*_amd64.deb
47+
build_focal:
48+
docker:
49+
- image: ubuntu:focal
50+
environment:
51+
LANG: C.UTF-8
52+
DEBIAN_FRONTEND: noninteractive
53+
steps:
54+
- checkout
55+
- run: sed -i 's/convertit (\([0-9]\+\.[0-9]\+\.[0-9]\+\)\(.*\)) RELEASED;/convertit (\1.ubuntu18.04\2) bionic;/' debian/changelog
3656
- run: apt-get update -q
3757
- run: DEBIAN_FRONTEND=noninteractive apt-get install -q -y software-properties-common
3858
- run: add-apt-repository ppa:jyrki-pulliainen/dh-virtualenv
@@ -64,14 +84,28 @@ workflows:
6484
version: 2
6585
all:
6686
jobs:
67-
- codestyle
68-
- test
69-
- build
87+
- codestyle:
88+
filters:
89+
tags:
90+
only: /[0-9]+\.[0-9]+\.[0-9]+/
91+
- test:
92+
filters:
93+
tags:
94+
only: /[0-9]+\.[0-9]+\.[0-9]+/
95+
- build_bionic:
96+
filters:
97+
tags:
98+
only: /[0-9]+\.[0-9]+\.[0-9]+/
99+
- build_focal:
100+
filters:
101+
tags:
102+
only: /[0-9]+\.[0-9]+\.[0-9]+/
70103
- publish:
71104
requires:
72105
- codestyle
73106
- test
74-
- build
107+
- build_bionic
108+
- build_focal
75109
filters:
76110
tags:
77111
only: /[0-9]+\.[0-9]+\.[0-9]+/

CHANGES.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
CHANGELOG
33
=========
44

5-
2.2.4.dev0
5+
2.2.4 (2021-01-13)
66
------------------
77

8-
-
8+
- Fix binding service
99

1010

1111
2.2.3 (2020-02-26)

debian/changelog

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
convertit (2.2.4~dev0) bionic; urgency=medium
1+
convertit (2.2.4) RELEASED; urgency=medium
22

3-
* ...
3+
* Fix binding service
44

5-
-- Gaël UTARD <gael.utard@makina-corpus.com> Wed, 26 Feb 2020 08:39:29 +0100
5+
-- Timothée DE MONTETY <timothee.de-montety@makina-corpus.com> Wed, 13 Jan 2021 09:39:10 +0100
66

77
convertit (2.2.3) bionic; urgency=medium
88

setup.py

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

2323

2424
setup(name='convertit',
25-
version='2.2.4.dev0',
25+
version='2.2.4',
2626
description='A file conversion Web API in Pyramid',
2727
long_description=README + '\n\n' + CHANGES,
2828
license='AGPLV3',

0 commit comments

Comments
 (0)