Skip to content
Open
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
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
asciidoctor-core-version: [v2.0.23, main]
asciidoctor-core-version: [v2.0.26, main]
experimental: [false]
include:
- os: macos-latest
experimental: true
asciidoctor-core-version: v2.0.23
asciidoctor-core-version: v2.0.26
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
steps:
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
asciidoctor-core-version: [v2.0.23, main]
asciidoctor-core-version: [v2.0.26, main]
steps:
- uses: actions/checkout@v4
- name: Set up Node
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
npm ci --prefix packages/core
- name: Lint, build and test
env:
ASCIIDOCTOR_CORE_VERSION: v2.0.23
ASCIIDOCTOR_CORE_VERSION: v2.0.26
run: |
npm run lint
npm run test
Expand All @@ -51,7 +51,7 @@ jobs:
# package and publish
- name: Package
env:
ASCIIDOCTOR_CORE_VERSION: v2.0.23
ASCIIDOCTOR_CORE_VERSION: v2.0.26
run: ./scripts/package.sh
- name: Publish
env:
Expand Down
12 changes: 11 additions & 1 deletion CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,16 @@ For a detailed view of what has changed, refer to the {uri-repo}/commits/main[co

== Unreleased

Improvements::

* Upgrade to https://github.com/asciidoctor/asciidoctor/releases/tag/v2.0.26[Asciidoctor 2.0.26]

Infrastructure::

* Add backtick_javascript comments for Opal 2
* Replace eslint by prettier
* Replace mocha/chai by node test runner
* Implement `Array#pack m0` (alias for `Base64.encode`)

== v3.0.4 (2024-02-12)

Expand All @@ -24,7 +34,7 @@ Infrastructure::
Bug Fixes::

* Fix types exports in `package.json` - thanks @sinedied
* Addd `context` and `node_name` accessor in the type definition - thanks @RayOffiah
* Add `context` and `node_name` accessor in the type definition - thanks @RayOffiah

Infrastructure::

Expand Down
Loading