Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release: updated instructions, bumped version #36

Merged
merged 1 commit into from
Jan 23, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Add TextChunker to your mix.exs:
```elixir
def deps do
[
{:text_chunker, "~> 0.3.1"}
{:text_chunker, "~> 0.3.2"}
]
end
```
Expand Down
5 changes: 3 additions & 2 deletions RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@

## Preparation
- [ ] Update the package version in `mix.exs`
- [ ] Update the package version badge and installation instructions in `README.md`
- [ ] Update the installation instructions in `README.md`
- [ ] Update SECURITY.md

## Release Process
- [ ] Make sure all changes in the `Preparation` section are in `main`
- [ ] In GitHub, create, and publish, a new release with appropriate notes, and version matching the package version `mix.exs`
- [ ] The github actions workflow should automatically publish the package and docs to hex
- [ ] The github actions workflow should automatically publish the package and docs to hex
1 change: 1 addition & 0 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

| Version | Supported |
| ------- | ------------------ |
| 0.3.2 | :white_check_mark: |
| 0.3.1 | :white_check_mark: |
| 0.3.0 | :white_check_mark: |
| 0.2.0 | :white_check_mark: |
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 TextChunker.MixProject do
use Mix.Project

@source_url "https://github.com/revelrylabs/text_chunker_ex"
@version "0.3.1"
@version "0.3.2"

def project do
[
Expand Down