From acc95c35b5d2f0c6784b3a4533c4f37938ac8020 Mon Sep 17 00:00:00 2001 From: Jesse Doyle Date: Fri, 21 Oct 2022 21:51:54 -0600 Subject: [PATCH] chore(release): Release 1.0.1 * Bump version to 1.0.1 to address ABI issues with Crystal >= 1.6.0. * Update ambeda to ~> 1.0. * Thanks @z64! --- .github/workflows/ci.yml | 2 +- CHANGELOG.md | 4 ++++ shard.yml | 4 ++-- src/duktape/version.cr | 2 +- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d8687f0..b45d667 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: with: crystal: ${{ matrix.crystal }} - name: Download source - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Dependencies run: shards install - name: Build diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f1316d..2bf1534 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# v1.0.1 - Oct 22, 2022 + +* Fix a segfault that occurs on Crystal >= 1.6.0. Thanks @z64!, #74 + # v1.0.0 - April 2, 2021 * Specify a `crystal` constraint of `>= 0.35.1` for compatibility with Crystal 1.0.0. Thanks @Kanezoh! diff --git a/shard.yml b/shard.yml index 0ed463f..ea216f0 100644 --- a/shard.yml +++ b/shard.yml @@ -1,5 +1,5 @@ name: duktape -version: 1.0.0 +version: 1.0.1 authors: - Jesse Doyle @@ -10,7 +10,7 @@ scripts: development_dependencies: ameba: github: veelenga/ameba - version: '~> 0.10' + version: '~> 1.2.0' crystal: '>= 0.35.1' diff --git a/src/duktape/version.cr b/src/duktape/version.cr index 6c50172..1d668a9 100644 --- a/src/duktape/version.cr +++ b/src/duktape/version.cr @@ -16,7 +16,7 @@ module Duktape module VERSION MAJOR = 1 MINOR = 0 - TINY = 0 + TINY = 1 PRE = nil STRING = [MAJOR, MINOR, TINY, PRE].compact.join "."