Skip to content

Commit

Permalink
Bump version.
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-gutev committed Apr 10, 2024
1 parent 82e60f0 commit a537e8b
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
# 0.1.4-beta - 2024-04-10

* Add function call operator to `cell` and `typed_cell` containers.

This allows runtime dependency tracking with dynamically typed
cells:

```cpp
auto a1 = live_cells::variable(0);
auto a2 = live_cells::typed_cell<int>(a1);

auto f = live_cells::computed([=] {
return a2() + 1
});
```
# 0.1.3-beta - 2024-04-08
* Switch to Apache 2.0 license
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Initialization
AC_INIT([live_cells], [0.1.3], [[email protected]])
AC_INIT([live_cells], [0.1.4], [[email protected]])
AC_CONFIG_SRCDIR([src/live_cells.cpp])
AC_CONFIG_MACRO_DIRS([m4])
AM_INIT_AUTOMAKE([-Wall foreign subdir-objects])
Expand Down

0 comments on commit a537e8b

Please sign in to comment.