Skip to content

Commit

Permalink
Version 0.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mpenning committed Feb 22, 2024
1 parent 1e6ed4c commit 2b91495
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@
- Summary:
- Insert something here

## Version: 0.6.3

- Released: 2024-02-22
- Summary:
- Fix missing backports requirement

## Version: 0.6.2

- Released: 2024-02-22
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ requires-python = ">=3.8"

[tool.poetry]
name = "ciscoconfparse2"
version = "0.6.2"
version = "0.6.3"
description = "Parse, Audit, Query, Build, and Modify Cisco IOS-style and JunOS-style configs"
license = "GPL-3.0-only"
authors = [
Expand Down Expand Up @@ -81,6 +81,7 @@ python = ">=3.8,<4.0.0"
attrs = "23.2.0"
passlib = "^1.7.4"
scrypt = "0.8.20"
backports.pbkdf2 = "0.1"
dnspython = "^2.4.2"
macaddress = "^2.0.2"
loguru = "0.7.2"
Expand Down
1 change: 1 addition & 0 deletions requirements/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ attrs == 23.2.0
loguru == 0.7.2
passlib == 1.7.4
scrypt == 0.8.20
backports.pbkdf2 == 0.1
tomlkit == 0.12.3
dnspython == 2.4.2
macaddress == 2.0.2
Expand Down
12 changes: 6 additions & 6 deletions sphinx-doc/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,27 +7,27 @@ Installation
pip
---

``pip install -U ciscoconfparse2 >= 0.6.2``
``pip install -U ciscoconfparse2 >= 0.6.3``

requirements.txt: pypi
----------------------

If you need a direct ``pypi`` dependency entry in your ``requirements.txt``
file, you can include an entry like this.

``ciscoconfparse2 == 0.6.2``
``ciscoconfparse2 == 0.6.3``

``0.6.2`` is used only as a reference; choose the correct release for your
``0.6.3`` is used only as a reference; choose the correct release for your
project.

requirements.txt: github
------------------------

If you need a direct ``git`` dependency entry in your ``requirements.txt``
file, you can include an entry like this (where ``0.6.2`` is a specific
file, you can include an entry like this (where ``0.6.3`` is a specific
``git tag`` that you want to reference.

``git+https://github.com/mpenning/[email protected].2``
``git+https://github.com/mpenning/[email protected].3``

``0.6.2`` is used only as a reference; choose the correct release for your
``0.6.3`` is used only as a reference; choose the correct release for your
project.

0 comments on commit 2b91495

Please sign in to comment.