Skip to content

Commit

Permalink
v0.22.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pierky committed Sep 18, 2019
1 parent 29b2ccd commit 1023f0d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
4 changes: 3 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ Change log
v0.22.1
-------

- Fix: handle more formats for ROAs from RIPE and NTT export file.
- Fix: handle more formats for ROAs exported from the public instances of RIPE and NTT validators.

A new way of representing ASNs (without the "AS" prefix) and new TA names which were not matched by the default values of ``rpki_roas.allowed_trust_anchors`` prevented ROAs from being imported and correctly processed when the default settings were used.

v0.22.0
-------
Expand Down
2 changes: 1 addition & 1 deletion pierky/arouteserver/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.

__version__ = "0.22.1-alpha1" # pragma: no cover
__version__ = "0.22.1" # pragma: no cover
COPYRIGHT_YEAR = 2019 # pragma: no cover
4 changes: 4 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,16 @@
dev releases (in 'dev' branch):
- git commit -a -m "v$(python -c 'from pierky.arouteserver.version import __version__; print(__version__)')"
- git tag v$(python -c "from pierky.arouteserver.version import __version__; print(__version__)")
- git push origin dev --tags
prod releases (in 'master' branch):
- git commit -a -m "v$(python -c 'from pierky.arouteserver.version import __version__; print(__version__)')"
- git tag v$(python -c "from pierky.arouteserver.version import __version__; print(__version__)")
- git push origin master --tags
Expand Down

0 comments on commit 1023f0d

Please sign in to comment.