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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.1.0"
".": "0.2.0"
}
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Changelog

## [0.2.0](https://github.com/copick/copick-cpp/compare/v0.1.0...v0.2.0) (2026-07-15)


### Features

* core copick C++ API with local filesystem backend ([25f238e](https://github.com/copick/copick-cpp/commit/25f238e5d76b88a85a817bdd6ff366a81fd03f50))
* cut first tagged release (0.2.0) ([49d661b](https://github.com/copick/copick-cpp/commit/49d661bf1e65eed20bcaeea8dd6b7bb19f4bf813))
* Release build config + AreTomo integration guide ([9658a23](https://github.com/copick/copick-cpp/commit/9658a23fce116d867c4529f0e4019c9bf2e9c6c5))
* rename array accessors numpy/from_numpy to to_array/from_array ([de484b9](https://github.com/copick/copick-cpp/commit/de484b9a2ee098cb249456b79a35e393d9d72f60))


### Bug Fixes

* make version smoke test resilient to release-please bumps ([7902f7c](https://github.com/copick/copick-cpp/commit/7902f7c1ab28387ba66085506d6072786e4d37b3))
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.24) # tensorstore requires >= 3.24
project(copick_cpp VERSION 0.1.0 LANGUAGES CXX) # x-release-please-version
project(copick_cpp VERSION 0.2.0 LANGUAGES CXX) # x-release-please-version

# --- Options ------------------------------------------------------------------
option(COPICK_BUILD_TESTS "Build the C++ test suite" ON)
Expand Down
4 changes: 2 additions & 2 deletions include/copick/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@

// Version numbers are maintained by release-please (do not edit the values by hand).
#define COPICK_VERSION_MAJOR 0 // x-release-please-major
#define COPICK_VERSION_MINOR 1 // x-release-please-minor
#define COPICK_VERSION_MINOR 2 // x-release-please-minor
#define COPICK_VERSION_PATCH 0 // x-release-please-patch
#define COPICK_VERSION_STRING "0.1.0" // x-release-please-version
#define COPICK_VERSION_STRING "0.2.0" // x-release-please-version

namespace copick {

Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.0
0.2.0
Loading