Skip to content
Merged
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
4 changes: 3 additions & 1 deletion .github/workflows/map-artifact.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,6 @@ jobs:
if: startsWith(github.ref, 'refs/tags/v')
env:
GH_TOKEN: ${{ github.token }}
run: gh release upload "$GITHUB_REF_NAME" dist/release/* --clobber
run: |
gh release view "$GITHUB_REF_NAME" >/dev/null 2>&1 || gh release create "$GITHUB_REF_NAME" --generate-notes --target "$GITHUB_SHA"
gh release upload "$GITHUB_REF_NAME" dist/release/* --clobber
53 changes: 0 additions & 53 deletions .github/workflows/release.yml

This file was deleted.

9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.5.0] — 2026-08-26

- Corpus source format migrated from Ruby DSL (`.imp`) to ISC (`.isc`);
transliteration parity verified at 100% across all 289 systems.
- New release channel: compiled JSON-IR artifacts
(`interscript-maps-ir-<version>.tar.gz` + `.sha256`) attached to
GitHub Releases by the `map-artifact` workflow; consumed by Workers
deployments via the Assets binding.

## [Latest]

See GitHub releases for detailed release notes: https://github.com/interscript/maps/releases
2 changes: 1 addition & 1 deletion interscript-maps.gemspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
INTERSCRIPT_MAPS_VERSION = "2.4.3"
INTERSCRIPT_MAPS_VERSION = "2.5.0"

Gem::Specification.new do |spec|
spec.name = "interscript-maps"
Expand Down
Loading