diff --git a/CHANGELOG.md b/CHANGELOG.md index b5101e9..3ed1b56 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/), and this --- +## [0.1.23] - 2025-01-04 + +### Added + +- Set log levels via config.toml + CLI + ## [0.1.22] - 2025-01-03 ### Added @@ -15,7 +21,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/), and this - Support for selective recomputation, caching - Basic dependency visualization and analysis - ## [0.1.0] - 2024-12-20 ### Added @@ -24,4 +29,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/), and this - Core functionality for building simple, interactive data apps. - Support for Markdown, data connections, and rendering tables. - Basic theming and layout configurations. - - Full CLI support for project management. \ No newline at end of file + - Full CLI support for project management. diff --git a/preswald/__init__.py b/preswald/__init__.py index 4e619c0..08642b3 100644 --- a/preswald/__init__.py +++ b/preswald/__init__.py @@ -1,5 +1,5 @@ # Initialize the Preswald package -__version__ = "0.1.22" +__version__ = "0.1.23" from .core import connect, connections from .components import ( diff --git a/setup.py b/setup.py index 0f26497..41c9159 100644 --- a/setup.py +++ b/setup.py @@ -118,7 +118,7 @@ def _copy_assets(self, frontend_dir): setup( # Basic package metadata name="preswald", - version="0.1.22", + version="0.1.23", author="Structured", author_email="founders@structuredlabs.com", description="A lightweight data workflow SDK.",