Cut version 0.0.1b15
authorScott Gasch <[email protected]>
Mon, 8 May 2023 04:07:46 +0000 (21:07 -0700)
committerScott Gasch <[email protected]>
Mon, 8 May 2023 04:07:46 +0000 (21:07 -0700)
- 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

dist/pyutils-0.0.1b15-py3-none-any.whl [new file with mode: 0644]
dist/pyutils-0.0.1b15-py3-none-any.whl.md5 [new file with mode: 0644]
dist/pyutils-latest-py3-none-any.whl
dist/pyutils-latest-py3-none-any.whl.md5
pyproject.toml
release_notes.md

diff --git a/dist/pyutils-0.0.1b15-py3-none-any.whl b/dist/pyutils-0.0.1b15-py3-none-any.whl
new file mode 100644 (file)
index 0000000..913184e
Binary files /dev/null and b/dist/pyutils-0.0.1b15-py3-none-any.whl differ
diff --git a/dist/pyutils-0.0.1b15-py3-none-any.whl.md5 b/dist/pyutils-0.0.1b15-py3-none-any.whl.md5
new file mode 100644 (file)
index 0000000..893ccf8
--- /dev/null
@@ -0,0 +1 @@
+MD5 (pyutils-0.0.1b15-py3-none-any.whl) = 38dfa45b434767c88295348a5492dc5a
index e18ce9cad9fbd8de73529cf6e133f96de3dfcd7b..ff9b11fe56262f92977c811154e188d436ac84d6 120000 (symlink)
@@ -1 +1 @@
-pyutils-0.0.1b14-py3-none-any.whl
\ No newline at end of file
+pyutils-0.0.1b15-py3-none-any.whl
\ No newline at end of file
index ed843a70c2460f21bdb91cf03dec31e330b96adc..492637ae7abfd875f29c555a1268b060c7e13e75 100644 (file)
@@ -1 +1 @@
-MD5 (pyutils-latest-py3-none-any.whl) = b0763a46666f658615a6e6533737efdd
+MD5 (pyutils-latest-py3-none-any.whl) = 38dfa45b434767c88295348a5492dc5a
index deb0092bd14964eb3b76d8ad87604ae872a11b5d..664a5574f433423378bcb9c29f8a1650c34f2ae7 100644 (file)
@@ -1,6 +1,6 @@
 [project]
 name = "pyutils"
-version = "0.0.1b14"
+version = "0.0.1b15"
 authors = [
   { name="Scott Gasch", email="[email protected]" },
 ]
index 898dcce1201060559fbd67c5fd8c02f9a794194b..f028a6e7228d5f0f099717273587645ba93d6c17 100644 (file)
@@ -436,3 +436,65 @@ This version -------- 0.0.1b14
 Previous version ---- 0.0.14
 Total commits -------       41
 ```
+# 🎁 Release notes (`0.0.1b15`)
+
+## Changes
+- 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.1b15
+Previous version ---- 0.0.1b14
+Total commits -------       52
+```