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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.12] - 2026-07-02

### Changed
Expand Down
6 changes: 3 additions & 3 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ RTK (Rewrite ToolKit) is a tool for generating parser and rewrite facilities fro

**Language**: Haskell
**Build System**: Cabal + Make
**Version**: 0.12 (development; 0.11 is the latest release on [Hackage](https://hackage.haskell.org/package/rtk))
**Version**: 0.13 (development; 0.12 is the latest release on [Hackage](https://hackage.haskell.org/package/rtk))

## What RTK Does

Expand Down Expand Up @@ -161,7 +161,7 @@ cabal build
This will:
- Download and build ~58 Haskell dependencies
- Build the RTK library and executable
- Place the executable in: dist-newstyle/build/x86_64-linux/ghc-9.4.7/rtk-0.12/x/rtk/build/rtk/rtk
- Place the executable in: dist-newstyle/build/x86_64-linux/ghc-9.4.7/rtk-0.13/x/rtk/build/rtk/rtk

### Environment Variables for Tests

Expand All @@ -184,7 +184,7 @@ cabal --version # Should show: 3.8.1.0

### Build Artifacts

- **Executable**: `dist-newstyle/build/x86_64-linux/ghc-9.4.7/rtk-0.12/x/rtk/build/rtk/rtk`
- **Executable**: `dist-newstyle/build/x86_64-linux/ghc-9.4.7/rtk-0.13/x/rtk/build/rtk/rtk`
- **Test output**: `test-out/` directory
- **Cabal binaries**: `~/.cabal/bin/` (happy, alex)
- **Cabal packages**: `~/.cabal/store/`
Expand Down
2 changes: 1 addition & 1 deletion rtk.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Cabal-Version: 2.4
Name: rtk
Version: 0.12
Version: 0.13
Synopsis: Parser and rewrite facility generator from grammar specifications
Description: RTK (Rewrite ToolKit) generates Alex lexer and Happy parser
files from grammar specifications. It supports quasi-quotation
Expand Down
Loading