Skip to content

Commit

Permalink
Merge pull request #72 from jessedoyle/2022-10-deps
Browse files Browse the repository at this point in the history
chore(release): Release 1.0.1
  • Loading branch information
jessedoyle committed Oct 22, 2022
2 parents 38748e6 + acc95c3 commit abd80b9
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -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
Expand Down
4 changes: 4 additions & 0 deletions 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!
Expand Down
4 changes: 2 additions & 2 deletions shard.yml
@@ -1,5 +1,5 @@
name: duktape
version: 1.0.0
version: 1.0.1

authors:
- Jesse Doyle <jdoyle@ualberta.ca>
Expand All @@ -10,7 +10,7 @@ scripts:
development_dependencies:
ameba:
github: veelenga/ameba
version: '~> 0.10'
version: '~> 1.2.0'

crystal: '>= 0.35.1'

Expand Down
2 changes: 1 addition & 1 deletion src/duktape/version.cr
Expand Up @@ -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 "."
Expand Down

0 comments on commit abd80b9

Please sign in to comment.