Skip to content

Commit

Permalink
Merge pull request #1621 from actonlang/release-v0.19.0
Browse files Browse the repository at this point in the history
Release v0.19.0
  • Loading branch information
plajjan authored Jan 8, 2024
2 parents 88c1e85 + f42e628 commit 60f23b8
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 1 deletion.
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,44 @@
# Changelog

## [0.19.0] (2024-01-08)

### Added
- Much improved argument "rows" support [#1609] [#1617], including:
- positional & keywords arguments
- default argument values
- `up`, `down`, `left` & `right` in `term` module now accept `n` arg [#1619]
- can move multiple steps in given direction

### Changed
- for `http.Client` the following positional arguments are now keyword args:
- `schema`: defaults to `https`
- `port`: defaults to `80` for schema `http` and `443` for `https`
- `tls_verify`: default `True`
- `connect_timeout`: default `10.0`

### Fixes
- Remove superfluous explicit arguments, now using default values [#1615] [#1618]
- Now possible to print `None` [#1609]

### Testing / CI
- Now testing Telemetrify in GitHub Action workflow as part of CI testing
- Telemetrify is the largest known application written using Acton, so we add
testing of it to the Acton repo to avoid accidental breakage
- Telemetrify main branch is already tested with the latest release of Acton
- now, new changes in acton are also verified against the telemetrify repo
- we test against the `acton-next` branch in the telemetrify repo
- this enables us to make breaking changes in the Acton repo, realize the
break, then write a fix adapting the telemetrify code to the new Acton
change and push this to the `acton-next` branch after which the PR on the
Acton repo can be retried


## [0.18.5] (2023-12-12)

### Testing / CI
- Fix build of APT repo


## [0.18.4] (2023-12-12)

### Fixes
Expand Down
2 changes: 1 addition & 1 deletion common.mk
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION=0.18.5
VERSION=0.19.0

0 comments on commit 60f23b8

Please sign in to comment.