From: Scott Gasch Date: Fri, 2 Jun 2023 23:22:05 +0000 (-0700) Subject: Cut version 0.0.1b16 X-Git-Url: https://wannabe.guru.org/gitweb/?a=commitdiff_plain;h=e70231d42fe7d6d8975f3172f297570b6b3b22c5;p=pyutils.git Cut version 0.0.1b16 - Cleanup code and update docs in bst.py. - Fix comment typos and remove linter warnings. - Fix type hints in executors. - Add some functionality to string_utils and improve type hints in there. - Improve type hints. - Improve docs on bst.py again. - Cut version 0.0.1b15 - small comment change. - Dots instead of pass... - Use Protocol to implement the interface typevar here instead. - Adds find_lowest_node_less_than_or_equal_to. - Cleanup code / comments. - Improve type hints in bst.py. - Better definition of "fuzzy". - Iterate within a range. - Fix squelch repeated log messages to work with modules loaded via "from foo import bar" type syntax. - Log the interpreter path in debug mode. - Cut version 0.0.1b14 - Fix another place for types -> typez - Make cron.py warn on no --timeout which can lead to stale locks. - Fix a bug around the computation of zookeeper lockfile expirations. - Remove package. - Use CreateFileWithMode for cache. - Make persistent use tighter permissions by default. - Fix clear_preexisting_handers functionality. - Adds a doctest. - Another types reference in the docs. - Rename in the docs. - types -> typez as the name mirrors a python core library name. - Add and use valid_byte_count. - Cut version 0.0.1b13 - Remove tprint, add docs. - Document this logging stuff. - Removes my hacky --lmodule which I will miss dearly but it was preventing the cool LoggingContext which is now added. - Cleanup. - Adds LoggingContext. - Cut version 0.0.1b12 - Do this logging stuff the right way. - Cut version 0.0.1b11 - Rename that class; it doesn't just prepend... - Improve pydocs. - Fix pydocs - Create methods to dynamically prepend or append messages to all log messages produced by the current thread. - Update docs. - Cut version 0.0.1b10 - More cleanup. - More spring cleaning. - I guess it's 2023 now... - Adds a new color. - Augment logging at startup in debug mode; fix a bug in config. - Fix logger.exception messages in example code. - Fix logger.exception() calls. - Use full path for grep. - Make logging use execute_probabilstically. - Improve docs and add a doctest. - Adds execute_probabilistically. - Minor tweaks. - Adds CreateFileWithMode helper to create a new file with a given mode more easily. - Cut version 0.0.1b9 --- diff --git a/dist/pyutils-0.0.1b16-py3-none-any.whl b/dist/pyutils-0.0.1b16-py3-none-any.whl new file mode 100644 index 0000000..daae11d Binary files /dev/null and b/dist/pyutils-0.0.1b16-py3-none-any.whl differ diff --git a/dist/pyutils-0.0.1b16-py3-none-any.whl.md5 b/dist/pyutils-0.0.1b16-py3-none-any.whl.md5 new file mode 100644 index 0000000..d9ebf57 --- /dev/null +++ b/dist/pyutils-0.0.1b16-py3-none-any.whl.md5 @@ -0,0 +1 @@ +MD5 (pyutils-0.0.1b16-py3-none-any.whl) = 1d16a5023ece9e993caee60b6e649a34 diff --git a/dist/pyutils-latest-py3-none-any.whl b/dist/pyutils-latest-py3-none-any.whl index ff9b11f..d72d1fa 120000 --- a/dist/pyutils-latest-py3-none-any.whl +++ b/dist/pyutils-latest-py3-none-any.whl @@ -1 +1 @@ -pyutils-0.0.1b15-py3-none-any.whl \ No newline at end of file +pyutils-0.0.1b16-py3-none-any.whl \ No newline at end of file diff --git a/dist/pyutils-latest-py3-none-any.whl.md5 b/dist/pyutils-latest-py3-none-any.whl.md5 index 492637a..9625b9b 100644 --- a/dist/pyutils-latest-py3-none-any.whl.md5 +++ b/dist/pyutils-latest-py3-none-any.whl.md5 @@ -1 +1 @@ -MD5 (pyutils-latest-py3-none-any.whl) = 38dfa45b434767c88295348a5492dc5a +MD5 (pyutils-latest-py3-none-any.whl) = 1d16a5023ece9e993caee60b6e649a34 diff --git a/pyproject.toml b/pyproject.toml index 664a557..4652d98 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pyutils" -version = "0.0.1b15" +version = "0.0.1b16" authors = [ { name="Scott Gasch", email="scott.gasch@gmail.com" }, ] diff --git a/release_notes.md b/release_notes.md index f028a6e..75630dd 100644 --- a/release_notes.md +++ b/release_notes.md @@ -498,3 +498,72 @@ This version -------- 0.0.1b15 Previous version ---- 0.0.1b14 Total commits ------- 52 ``` +# 🎁 Release notes (`0.0.1b16`) + +## Changes +- Cleanup code and update docs in bst.py. +- Fix comment typos and remove linter warnings. +- Fix type hints in executors. +- Add some functionality to string_utils and improve type hints in there. +- Improve type hints. +- Improve docs on bst.py again. +- Cut version 0.0.1b15 +- small comment change. +- Dots instead of pass... +- Use Protocol to implement the interface typevar here instead. +- Adds find_lowest_node_less_than_or_equal_to. +- Cleanup code / comments. +- Improve type hints in bst.py. +- Better definition of "fuzzy". +- Iterate within a range. +- Fix squelch repeated log messages to work with modules loaded via "from foo import bar" type syntax. +- Log the interpreter path in debug mode. +- Cut version 0.0.1b14 +- Fix another place for types -> typez +- Make cron.py warn on no --timeout which can lead to stale locks. +- Fix a bug around the computation of zookeeper lockfile expirations. +- Remove package. +- Use CreateFileWithMode for cache. +- Make persistent use tighter permissions by default. +- Fix clear_preexisting_handers functionality. +- Adds a doctest. +- Another types reference in the docs. +- Rename in the docs. +- types -> typez as the name mirrors a python core library name. +- Add and use valid_byte_count. +- Cut version 0.0.1b13 +- Remove tprint, add docs. +- Document this logging stuff. +- Removes my hacky --lmodule which I will miss dearly but it was preventing the cool LoggingContext which is now added. +- Cleanup. +- Adds LoggingContext. +- Cut version 0.0.1b12 +- Do this logging stuff the right way. +- Cut version 0.0.1b11 +- Rename that class; it doesn't just prepend... +- Improve pydocs. +- Fix pydocs +- Create methods to dynamically prepend or append messages to all log messages produced by the current thread. +- Update docs. +- Cut version 0.0.1b10 +- More cleanup. +- More spring cleaning. +- I guess it's 2023 now... +- Adds a new color. +- Augment logging at startup in debug mode; fix a bug in config. +- Fix logger.exception messages in example code. +- Fix logger.exception() calls. +- Use full path for grep. +- Make logging use execute_probabilstically. +- Improve docs and add a doctest. +- Adds execute_probabilistically. +- Minor tweaks. +- Adds CreateFileWithMode helper to create a new file with a given mode more easily. +- Cut version 0.0.1b9 + +## Metadata +``` +This version -------- 0.0.1b16 +Previous version ---- 0.0.1b15 +Total commits ------- 59 +```