diff --git a/CHANGELOG.md b/CHANGELOG.md index 329ff20..93fbcb2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,16 +5,16 @@ 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.13.0 (2023-08-23) +## v0.14.0 (2023-09-19) ### 1. Enhancements - - [Sourceror.Zipper] Refactor `Zipper` to use a struct by @zachallaun in https://github.com/doorgan/sourceror/pull/98 + - [Sourceror] Change `get_range/1` to allow returning `nil` by @zachallaun in https://github.com/doorgan/sourceror/pull/107parse_string` by @zachallaun in https://github.com/doorgan/sourceror/pull/104 + - [Sourceror.Identifier] Add additional identification guards by @zachallaun in https://github.com/doorgan/sourceror/pull/108 ### 2. Bug fixes - - [Sourceror] Fix `get_range` for complex module aliases (fixes #99) by @zachallaun in https://github.com/doorgan/sourceror/pull/100 - + - [Sourceror] Ensure `get_range` works for all syntax nodes parsed using `Sourceror. -## v0.12.3 (2023-03-21) +## v0.13.0 (2023-08-23) -The changelog for v0.12 releases can be found [in the 0.12 -branch](https://github.com/doorgan/sourceror/blob/v0.12/CHANGELOG.md). +The changelog for v0.13 releases can be found [in the 0.13 +branch](https://github.com/doorgan/sourceror/blob/v0.13/CHANGELOG.md). diff --git a/README.md b/README.md index ee10e15..cd70f0c 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Add `:sourceror` as a dependency to your project's `mix.exs`: ```elixir defp deps do [ - {:sourceror, "~> 0.13"} + {:sourceror, "~> 0.14"} ] end ``` diff --git a/mix.exs b/mix.exs index 7742f41..6870d45 100644 --- a/mix.exs +++ b/mix.exs @@ -2,7 +2,7 @@ defmodule Sourceror.MixProject do use Mix.Project @repo_url "https://github.com/doorgan/sourceror" - @version "0.13.0" + @version "0.14.0" def project do [