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
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/).

## [Unreleased]

## [0.3.0] - 2026-04-16

### Removed

- Embedded PDBx dictionary (`@embedFile`) — `mmcif-dict fetch` is now required
on first use; binary shrinks from ~3 MB to ~1 MB
on first use; binary shrinks from ~3 MB to ~1 MB (#34)
- Two-stage build (`compile_tool` host binary and `data/mmcif_pdbx.dic`)

### Changed
Expand Down
2 changes: 1 addition & 1 deletion build.zig.zon
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
.name = .mmcif_dict_cli,
// This is a [Semantic Version](https://semver.org/).
// In a future version of Zig it will be used for package deduplication.
.version = "0.2.0",
.version = "0.3.0",
// Together with name, this represents a globally unique package
// identifier. This field is generated by the Zig toolchain when the
// package is first created, and then *never changes*. This allows
Expand Down
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
{
packages.default = pkgs.stdenv.mkDerivation {
pname = "mmcif-dict";
version = "0.2.0";
version = "0.3.0";

src = ./.;

Expand Down
Loading