Skip to content

Commit ca511e5

Browse files
First stable release 2.0.0 (+deb)
1 parent 24dfe48 commit ca511e5

File tree

8 files changed

+12
-8
lines changed

8 files changed

+12
-8
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7-
## 1.2.0- - [Unreleased]
7+
## 2.0.0 - 2018-08-20
88
### Added
99
- Added `Makefile`, especially the `make install` target
1010
- Added support for `deb` packaging (now the recommended installation type)
11-
- Added support for *inetd*-style servers (acceptor socket as fd 0)
11+
- Added support for *inetd*-style servers (acceptor(!) socket as fd 0)
1212
- Added `tools/xcauth.logrotate` (see [tools/README.md](./tools/README.md)
1313
- Added quick setup instructions for existing *Prosody* or *ejabberd* setups
1414
- Added support for fewer bcrypt() rounds for in-memory databases

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,10 @@ nightly:deb
136136
reprepro -b ../dl.jsxc.org includedeb nightly ../xcauth_${VERSION}-0~18.040_all.deb
137137
nightly-push: nightly
138138
(cd ../dl.jsxc.org && git add pool/*/*/*/* && git commit -a -m "Nightly" && git push)
139+
stable:deb
140+
reprepro -b ../dl.jsxc.org includedeb stable ../xcauth_${VERSION}-0~18.040_all.deb
141+
stable-push: stable
142+
(cd ../dl.jsxc.org && git add pool/*/*/*/* && git commit -a -m "Stable" && git push)
139143

140144
tar:
141145
tar cfa ../xcauth_${VERSION}.orig.tar.gz \

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ For installation and configuration instructions, see [doc/Installation.md](doc/I
1919
To use our binary `deb` repository, create `/etc/apt/sources.list.d/jsxc.list` with the following contents:
2020

2121
```deb
22-
deb https://dl.jsxc.org nightly main
22+
deb https://dl.jsxc.org stable main
2323
```

debian/changelog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
xcauth (1.0.0-195-g6dfe722-1) nightly; urgency=medium
1+
xcauth (2.0.0-1) nightly; urgency=medium
22

33
* Direct packaging
44

doc/Installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Alternative installation instructions:
1010
Currently, only nightlies are supported, which you get by
1111
```
1212
sudo -s
13-
echo deb https://dl.jsxc.org nightly main > /etc/apt/sources.list.d/jsxc.list
13+
echo deb https://dl.jsxc.org stable main > /etc/apt/sources.list.d/jsxc.list
1414
wget -qO - https://dl.jsxc.org/archive.key | apt-key add -
1515
apt update
1616
apt install xcauth

doc/QuickInstallEjabberd.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ or run into trouble with this setup, read the
1616
Currently, only nightlies are supported, which you get by
1717
```
1818
sudo -s
19-
echo deb https://dl.jsxc.org nightly main > /etc/apt/sources.list.d/jsxc.list
19+
echo deb https://dl.jsxc.org stable main > /etc/apt/sources.list.d/jsxc.list
2020
wget -qO - https://dl.jsxc.org/archive.key | apt-key add -
2121
apt update
2222
apt install xcauth

doc/QuickInstallProsody.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ or run into trouble with this setup, read the
1616
Currently, only nightlies are supported, which you get by
1717
```
1818
sudo -s
19-
echo deb https://dl.jsxc.org nightly main > /etc/apt/sources.list.d/jsxc.list
19+
echo deb https://dl.jsxc.org stable main > /etc/apt/sources.list.d/jsxc.list
2020
wget -qO - https://dl.jsxc.org/archive.key | apt-key add -
2121
apt update
2222
apt install xcauth

xclib/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = '1.2.0-'
1+
VERSION = '2.0.0'

0 commit comments

Comments
 (0)