Skip to content

Commit

Permalink
release 2.1.0
Browse files Browse the repository at this point in the history
- chore: 2.1.0 release
  • Loading branch information
msftcangoblowm committed Dec 15, 2024
1 parent 834ad67 commit 28d006a
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 39 deletions.
38 changes: 14 additions & 24 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -46,32 +46,22 @@ Changelog
Commit items for NEXT VERSION
..............................

- fix: requires latest wreck release
- chore: bump wreck
- fix(docs/conf.py): sphinx conf broken import
- fix: add missing build dependency wreck
- feat: add wreck support
- fix: pyproject.toml section pipenv-unlock (#10)
- refactor: remove entrypoint pipenv-unlock
- docs: reduce links in source code not sphinx inventory files
- feat: one command. reqs fix Creates .lock .unlock and fix both
- chore: deprecate reqs unlock and reqs fix_v1
- refactor: entrypoint name change pipenv-unlock --> reqs
- feat: add fix_requirements_lock. Call after lock_compile (#18)
- feat(lock_filepins): read each .in requirements file once
- refactor(lock_compile): from_loader two implementations the later read files once
- fix(lock_inspect): get package name in line exact match algo
- fix(lock_infile): resolution loop sort alphabetically (#16)
- fix(lock_infile): resolution loop detect missing reqs both factors files and zeroes count
- feat(lock_infile): sort InFiles.files alphabetically
- fix(lock_infile): strictly scrutinize InFile.stem and InFile.relpath
- feat: add tox-req.ini tie venv requirements to respective py interpreter version (#17)
- feat: pipenv-unlock lock subprocess to use venv py executable otherwise issue warning (#17)
- feat(_safe_path): add get_venv_python_abspath to get venv py executable absolute path (#17)
- chore(tox.ini): add target format. Separate from lint

.. scriv-start-here
.. _changes_2-1-0:

Version 2.1.0 — 2024-12-15
--------------------------

- fix(dev.lock): requires latest wreck release
- chore: bump wreck
- fix(docs/conf.py): sphinx conf broken import
- fix(pyproject.toml): add missing build dependency wreck
- feat: add wreck support
- fix: pyproject.toml section pipenv-unlock (#10)
- refactor: remove entrypoint pipenv-unlock
- docs: reduce links in source code not sphinx inventory files

.. _changes_2-0-0:

Version 2.0.0 — 2024-11-06
Expand Down
9 changes: 4 additions & 5 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,15 @@ Python build backend with build plugins and dependency lock switch
\* Python 3.9 through 3.13, PyPy

**new in 2.1.0**

fork dependency fixing into separate package; add wreck support;

**new in 2.0.x**

approach for requirements organize by venvs rather than folders;
new implementation for pipenv-unlock commands;

**new in 1.8.x**

add dependency drain-swamp-snippet; use msftcangoblowm/drain-swamp-action;
add support for .shared.in; command pipenv-unlock fix;

What swamp?
------------

Expand Down
6 changes: 3 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
# @@@ editable
copyright = "2024–2024, Dave Faulkmore"
# The short X.Y.Z version.
version = "2.0.0"
version = "2.1.0"
# The full version, including alpha/beta/rc tags.
release = "2.0.0"
release = "2.1.0"
# The date of release, in "monthname day, year" format.
release_date = "November 6, 2024"
release_date = "Decement 15, 2024"
# @@@ end

v = parse(release)
Expand Down
9 changes: 4 additions & 5 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,15 @@
\* Python 3.9 through 3.13, PyPy

**new in 2.1.0**

fork dependency fixing into separate package; add wreck support;

**new in 2.0.x**

approach for requirements organize by venvs rather than folders;
new implementation for pipenv-unlock commands;

**new in 1.8.x**

add dependency drain-swamp-snippet; use msftcangoblowm/drain-swamp-action;
add support for .shared.in; command pipenv-unlock fix;

.. raw:: html

<div style="visibility: hidden;">
Expand Down
4 changes: 2 additions & 2 deletions src/drain_swamp/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@
__version_tuple__: VERSION_TUPLE
version_tuple: VERSION_TUPLE

__version__ = version = '2.0.0'
__version_tuple__ = version_tuple = (2, 0, 0)
__version__ = version = '2.1.0'
__version_tuple__ = version_tuple = (2, 1, 0)

0 comments on commit 28d006a

Please sign in to comment.