From 6027a3bb1c2448273346a41f8fd90d0d96468b05 Mon Sep 17 00:00:00 2001 From: Dorgan Date: Tue, 23 Jul 2024 22:41:35 -0300 Subject: [PATCH] v1.5.0 (#159) * v1.5.0 * Update changelog --- 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 f7926cf..c42d16a 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.5.0 (2024-07-23) + +### 1. Enchancements + +- [Sourceror] Added `strip_meta/1` +- [Sourceror.Zipper] Added `search_pattern/2` +- [Sourceror.Zipper] Added `at/2` +- [Sourceror.Zipper] Added `find_value/3` +- [Sourceror.Zipper] Allow updating the outer tree with `within/2` + ## v1.4.0 (2024-06-24) ### 1. Enhancements diff --git a/README.md b/README.md index f5ecb30..9515dcd 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.4"} + {:sourceror, "~> 1.5"} ] end ``` diff --git a/mix.exs b/mix.exs index 4b823de..7bdda56 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.4.0" + @version "1.5.0" def project do [