Skip to content

Commit

Permalink
Prep for 0.2.0 release (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
cigrainger authored Dec 7, 2022
1 parent e3f2827 commit eeb4185
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 10 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ 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.2.0] - 2022-12-07

### Added

- Add a minimal http server to avoid problems with openssl
- Expose `Encoding.get_special_tokens_mask/1` and `Encoding.get_offsets/1` for NER

## [v0.1.0] - 2022-08-25

First release.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Then you can add `Tokenizers` as dependency in your `mix.exs`.
```elixir
def deps do
[
{:tokenizers, "~> 0.1.0"},
{:tokenizers, "~> 0.2.0"},
]
end
```
Expand All @@ -26,7 +26,7 @@ If you are using Livebook or IEx, you can instead run:

```elixir
Mix.install([
{:tokenizers, "~> 0.1.0"},
{:tokenizers, "~> 0.2.0"},
])
```

Expand Down
12 changes: 6 additions & 6 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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 Tokenizers.MixProject do
use Mix.Project

@source_url "https://github.com/elixir-nx/tokenizers"
@version "0.1.2-dev"
@version "0.2.0"

def project do
[
Expand Down
2 changes: 1 addition & 1 deletion notebooks/pretrained.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Mix.install(
[
{:kino, "~> 0.5.2"},
{:scidata, "~> 0.1.5"},
{:tokenizers, "~> 0.1.0"},
{:tokenizers, "~> 0.2.0"},
{:nx, "~> 0.3"}
],
force: true
Expand Down

0 comments on commit eeb4185

Please sign in to comment.