Skip to content

Commit

Permalink
v0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
doorgan committed Apr 3, 2022
1 parent 87e8f82 commit f66a21d
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 10 deletions.
22 changes: 14 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,25 @@
# Changelog for Sourceror v0.10
# Changelog for Sourceror v0.11

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).

## v0.10.0 (2022-02-06)
## v0.11.0 (2022-04-03)

### 1. Enhancements

- [Sourceror.Zipper] Added `traverse_while` (Thanks to @NickNeck)
- [Sourceror.Zipper] `traverse` now traverses subtrees if given a non `top`
zipper (Thanks to @NickNeck)
- [Sourceror.Zipper] Added `skip` (Thanks to @NickNeck)
- [Sourceror.Zipper] Added a `direction` to `zip` (Thanks to @NickNeck)

### 2. Bug fixes

## v0.9.0 (2021-12-04)
- [Sourceror] Comments are no longer misplaced for `:__block__` nodes
with trailing comments
- [Sourceror] Blocks with trailing comments are no longer force-formatted with
parenthesis.

## v0.10.0 (2022-02-06)

The changelog for v0.9 releases can be found [in the v0.9
branch](https://github.com/doorgan/sourceror/blob/v0.9/CHANGELOG.md).
The changelog for v0.10 releases can be found [in the 0.10
branch](https://github.com/doorgan/sourceror/blob/0.10/CHANGELOG.md).
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Add `:sourceror` as a dependency to your project's `mix.exs`:
```elixir
defp deps do
[
{:sourceror, "~> 0.10"}
{:sourceror, "~> 0.11"}
]
end
```
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ defmodule Sourceror.MixProject do
use Mix.Project

@repo_url "https://github.com/doorgan/sourceror"
@version "0.10.0"
@version "0.11.0"

def project do
[
Expand Down

0 comments on commit f66a21d

Please sign in to comment.