Skip to content

Commit ecbb67b

Browse files
committed
bump version 0.1.0rc2 -> 0.1.0
1 parent 4f30131 commit ecbb67b

10 files changed

Lines changed: 33 additions & 15 deletions

.bumpver.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpver]
2-
current_version = "0.1.0rc2"
2+
current_version = "0.1.0"
33
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"
44
commit_message = "bump version {old_version} -> {new_version}"
55
tag_message = "{new_version}"

CHANGES.rst

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
1+
libasdf 0.1.0 (2026-09-04)
2+
==========================
3+
4+
Bugfix
5+
------
6+
7+
- Fixed incorrect handling of ``--disable-debug``, ``--disable-asan`` and
8+
``--disable-ubsan`` flags to ``configure``.
9+
10+
11+
Documentation
12+
-------------
13+
14+
- Fixed broken link in the README to the "development" section.
15+
- Improved the documentation index such that entries are grouped ignoring the
16+
``asdf_`` prefix.
17+
18+
For example, ``asdf_block_open()`` is grouped under "B", not "A" (previously
19+
almost all documented symbols are just grouped under "A" which is not as
20+
useful for a C library).
21+
22+
23+
Misc
24+
----
25+
26+
- Fixed the vendored copy of STC leaking its symbols out of ``libasdf.so``.
27+
28+
129
libasdf 0.1.0rc2 (2026-08-24)
230
=============================
331

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.21)
22

33
# Internal full package version
4-
set(PACKAGE_VERSION 0.1.0rc2)
4+
set(PACKAGE_VERSION 0.1.0)
55

66
# CMake-compatible project version
77
set(PROJECT_VERSION 0.1.0)

changes/+broken-readme-link.doc

Lines changed: 0 additions & 1 deletion
This file was deleted.

changes/+disable-debug.bugfix

Lines changed: 0 additions & 2 deletions
This file was deleted.

changes/+improved-index.doc

Lines changed: 0 additions & 6 deletions
This file was deleted.

changes/+stc-symbol-leakage.misc

Lines changed: 0 additions & 1 deletion
This file was deleted.

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
AC_PREREQ([2.69])
22
AC_INIT(
3-
[libasdf], [0.1.0rc2],
3+
[libasdf], [0.1.0],
44
[https://github.com/asdf-format/libasdf/issues],
55
[],
66
[https://github.com/asdf-format/libasdf],

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
def read_config_h() -> tuple[str, str, str]:
1616
"""Read package data out of config.h if possible"""
1717
project = 'libasdf'
18-
release = '0.1.0rc2'
18+
release = '0.1.0'
1919

2020
config_h_path = Path(__file__).parent.parent / 'config.h'
2121

towncrier.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.towncrier]
22
name = "libasdf"
3-
version = "0.1.0rc2"
3+
version = "0.1.0"
44
directory = "changes"
55
filename = "CHANGES.rst"
66
issue_format = "`#{issue} <https://github.com/asdf-format/asdf/issues/{issue}>`_"

0 commit comments

Comments
 (0)