Skip to content

Commit

Permalink
Prepare for v1.1.0 (#131)
Browse files Browse the repository at this point in the history
  • Loading branch information
doorgan committed May 9, 2024
1 parent 96ddb13 commit 9bf292b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,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).

## v1.1.0 (2024-05-09)

### 1. Bug fixes
- [Sourceror] Fix trailing comments being misplaced

## v1.0.3 (2024-04-12)

### 1. Bug fixes
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Add `:sourceror` as a dependency to your project's `mix.exs`:
```elixir
defp deps do
[
{:sourceror, "~> 1.0"}
{:sourceror, "~> 1.1"}
]
end
```
Expand Down Expand Up @@ -164,6 +164,7 @@ replacement.
Using patches, we could do the same as above, but produce a patch instead of
modifying the AST. As a result, only the parts that need to be changed will be
affected, and the rest of the code keeps the original formatting:
```elixir
test "patches the source code" do
source =
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 "1.0.3"
@version "1.1.0"

def project do
[
Expand Down

0 comments on commit 9bf292b

Please sign in to comment.