From 531e239e86135ecac9a7630fcd5727037aa8fdca Mon Sep 17 00:00:00 2001 From: Dorgan Date: Mon, 24 Jun 2024 21:05:56 -0300 Subject: [PATCH] v1.4.0 (#153) --- CHANGELOG.md | 10 ++++++++++ README.md | 2 +- mix.exs | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b964a80..f7926cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +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). +## v1.4.0 (2024-06-24) + +### 1. Enhancements + +- [Sourceror.Zipper] Added `move_to_cursor/2` to move to the next node that matches a pattern + +### 2. Bug fixes + +- [Sourceror] Fixed `get_range` for qualified double calls like `Mod.fun()()` + ## v1.3.0 (2024-06-14) ### 1. Enhancements diff --git a/README.md b/README.md index f7cc5ec..f5ecb30 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Add `:sourceror` as a dependency to your project's `mix.exs`: ```elixir defp deps do [ - {:sourceror, "~> 1.3"} + {:sourceror, "~> 1.4"} ] end ``` diff --git a/mix.exs b/mix.exs index fb6ade4..4b823de 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 "1.3.0" + @version "1.4.0" def project do [