Skip to content
Closed
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
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,22 @@ 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).

## [1.2.0] - 2025-08-27

### Added
- Support for aliased module callbacks (`alias IO, as: MyIO` with `@then {MyIO, :puts}`)
- Test coverage for aliased modules functionality
- Documentation examples showing aliased module usage

### Fixed
- Documentation examples now use `IO.puts` instead of `Logger` (no require needed)
- ExDoc configuration for proper main page rendering
- Documentation structure and navigation

### Improved
- Better error messages and examples in documentation
- More comprehensive test suite covering edge cases

## [1.1.0] - 2025-08-27

### Added
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ defmodule Then.MixProject do
def project do
[
app: :then,
version: "1.1.0",
version: "1.2.0",
elixir: "~> 1.18",
start_permanent: Mix.env() == :prod,
deps: deps(),
Expand Down