From 5dab76d378ce677d7cd52a028a1df85d47d014b4 Mon Sep 17 00:00:00 2001 From: Jordan Irwin Date: Sun, 16 Apr 2023 18:41:43 -0700 Subject: [PATCH] Release version 0.1 --- Doxyfile | 2 +- build.conf | 2 +- doc/changelog.txt | 33 ++++++++++++++++++--------------- lib/libdbr/__init__.py | 2 +- 4 files changed, 21 insertions(+), 18 deletions(-) diff --git a/Doxyfile b/Doxyfile index 2f72d6f..0cef361 100644 --- a/Doxyfile +++ b/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = libdbr # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 0.1dev11 +PROJECT_NUMBER = 0.1 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/build.conf b/build.conf index b0b34cf..fa8ae26 100644 --- a/build.conf +++ b/build.conf @@ -2,7 +2,7 @@ package = libdbr description = High level Python library for Debreate version = 0.1 -version_dev = 11 +version_dev = 0 # files for installation dirs_app = lib diff --git a/doc/changelog.txt b/doc/changelog.txt index 51903ba..856a2c5 100644 --- a/doc/changelog.txt +++ b/doc/changelog.txt @@ -1,17 +1,20 @@ -next +0.1 - initial release -- created modules: - - bin - - config - - dateinfo - - fileinfo - - fileio - - logger - - misc - - modules - - paths - - sysinfo - - tasks - - unittest - - userinfo +- module bin: functions for executing sub-processes +- module clformat: formatter for argparse +- module compat: functions for version comparison +- module config: functions & classes for managing confiration files +- module dateinfo: functions for date & time formatting +- module fileinfo: functions for file & directory information +- module fileio: functions for reading & writing files +- module logger: class for managing message logging +- module misc: miscellaneous functions +- module modules: functions for managing third-party Python modules +- module paths: functions for managing system paths +- module strings: functions for string formatting & parsing +- module sysinfo: functions for retrieving system information +- module tasks: task creation & execution +- module types: custom types +- module unittest: functions for running unit tests & handling assertions +- module userinfo: functions for retrieving user information diff --git a/lib/libdbr/__init__.py b/lib/libdbr/__init__.py index c58d9de..a94e4d1 100644 --- a/lib/libdbr/__init__.py +++ b/lib/libdbr/__init__.py @@ -10,7 +10,7 @@ __version = (0, 1) -__version_dev = 11 +__version_dev = 0 ## Retrieves version information. def version():