Skip to content

Commit

Permalink
First stable release 2.0.0 (+deb)
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcelWaldvogel committed Aug 20, 2018
1 parent 24dfe48 commit ca511e5
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 8 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## 1.2.0- - [Unreleased]
## 2.0.0 - 2018-08-20
### Added
- Added `Makefile`, especially the `make install` target
- Added support for `deb` packaging (now the recommended installation type)
- Added support for *inetd*-style servers (acceptor socket as fd 0)
- Added support for *inetd*-style servers (acceptor(!) socket as fd 0)
- Added `tools/xcauth.logrotate` (see [tools/README.md](./tools/README.md)
- Added quick setup instructions for existing *Prosody* or *ejabberd* setups
- Added support for fewer bcrypt() rounds for in-memory databases
Expand Down
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,10 @@ nightly:deb
reprepro -b ../dl.jsxc.org includedeb nightly ../xcauth_${VERSION}-0~18.040_all.deb
nightly-push: nightly
(cd ../dl.jsxc.org && git add pool/*/*/*/* && git commit -a -m "Nightly" && git push)
stable:deb
reprepro -b ../dl.jsxc.org includedeb stable ../xcauth_${VERSION}-0~18.040_all.deb
stable-push: stable
(cd ../dl.jsxc.org && git add pool/*/*/*/* && git commit -a -m "Stable" && git push)

tar:
tar cfa ../xcauth_${VERSION}.orig.tar.gz \
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ For installation and configuration instructions, see [doc/Installation.md](doc/I
To use our binary `deb` repository, create `/etc/apt/sources.list.d/jsxc.list` with the following contents:

```deb
deb https://dl.jsxc.org nightly main
deb https://dl.jsxc.org stable main
```
2 changes: 1 addition & 1 deletion debian/changelog
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
xcauth (1.0.0-195-g6dfe722-1) nightly; urgency=medium
xcauth (2.0.0-1) nightly; urgency=medium

* Direct packaging

Expand Down
2 changes: 1 addition & 1 deletion doc/Installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Alternative installation instructions:
Currently, only nightlies are supported, which you get by
```
sudo -s
echo deb https://dl.jsxc.org nightly main > /etc/apt/sources.list.d/jsxc.list
echo deb https://dl.jsxc.org stable main > /etc/apt/sources.list.d/jsxc.list
wget -qO - https://dl.jsxc.org/archive.key | apt-key add -
apt update
apt install xcauth
Expand Down
2 changes: 1 addition & 1 deletion doc/QuickInstallEjabberd.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ or run into trouble with this setup, read the
Currently, only nightlies are supported, which you get by
```
sudo -s
echo deb https://dl.jsxc.org nightly main > /etc/apt/sources.list.d/jsxc.list
echo deb https://dl.jsxc.org stable main > /etc/apt/sources.list.d/jsxc.list
wget -qO - https://dl.jsxc.org/archive.key | apt-key add -
apt update
apt install xcauth
Expand Down
2 changes: 1 addition & 1 deletion doc/QuickInstallProsody.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ or run into trouble with this setup, read the
Currently, only nightlies are supported, which you get by
```
sudo -s
echo deb https://dl.jsxc.org nightly main > /etc/apt/sources.list.d/jsxc.list
echo deb https://dl.jsxc.org stable main > /etc/apt/sources.list.d/jsxc.list
wget -qO - https://dl.jsxc.org/archive.key | apt-key add -
apt update
apt install xcauth
Expand Down
2 changes: 1 addition & 1 deletion xclib/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = '1.2.0-'
VERSION = '2.0.0'

0 comments on commit ca511e5

Please sign in to comment.