Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions docs/manual/2026.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ layout: default

<a name="0.17.0-unreleased"></a>
### [0.17.0-unreleased](https://github.com/JDimproved/JDim/compare/JDim-v0.16.0...master) (unreleased)
- ([#1588](https://github.com/JDimproved/JDim/pull/1588))
Fix crash in `parse_date_id` triggered by certain ID field patterns
- ([#1586](https://github.com/JDimproved/JDim/pull/1586))
Add gcc-c++ to dependencies for Red Hat
- ([#1585](https://github.com/JDimproved/JDim/pull/1585))
Update histories
- ([#1583](https://github.com/JDimproved/JDim/pull/1583))
Bump version to 0.16.1-alpha and increment micro version for dev cycle

Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
# - 生成された実行ファイルの場所は builddir/src/jdim

project('jdim', 'cpp',
version : '0.16.1-alpha',
version : '0.17.0-beta',
license : 'GPL2',
meson_version : '>= 0.61.0',
default_options : ['warning_level=3', 'cpp_std=c++20'])
Expand Down
8 changes: 4 additions & 4 deletions src/jdversion.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
// SEE ALSO: ENVIRONMENT::get_jdversion()

#define MAJORVERSION 0
#define MINORVERSION 16
#define MICROVERSION 1
#define JDDATE_FALLBACK "20260404"
#define JDTAG "alpha"
#define MINORVERSION 17
#define MICROVERSION 0
#define JDDATE_FALLBACK "20260620"
#define JDTAG "beta"

//---------------------------------

Expand Down
Loading