Skip to content

Commit

Permalink
docs: summarize latest changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mhucka committed Mar 24, 2023
1 parent 693d4f1 commit 0afeb8b
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,25 @@
# Change log for CommonPy

## Version 1.12.0

Additions in this release:
* New function `network` in the `network_utils` module. It is a companion to `net` and takes the same arguments, but returns only one value (the response). If an error occurs, it raises the error as an exception. This makes it possible for callers to use `network(...)` in somewhat more Pythonic style than `net(...)`, by wrapping the call to `network(...)` in `try`-`except`.

Changes in this release:
* Removed `slice` from `data_utils` module because it shadows a Python built-in.
* Fixed `hostname` in `network_utils` to be more general and not hardwire a test for `http`.
* Fixed a bunch of `flake8` warnings.


## Version 1.11.0

Additions in this release:
* New class `CaseFoldSet`, similar to `CaseFoldDict` but … a set.

Changes in this release:
* Fixed a bug in the class documentation in the `README.md` file.
* Add missing dependency for [twine]() in requirements-dev
* Use lazy `import`s in more places, for faster load times.
* Added missing dependency for [twine]() in requirements-dev
* Now using lazy `import`s in more places, for faster load times.


## Version 1.10.0
Expand Down

0 comments on commit 0afeb8b

Please sign in to comment.