Skip to content

Commit

Permalink
bump version for fixing typos
Browse files Browse the repository at this point in the history
  • Loading branch information
jaeyson committed Aug 13, 2023
1 parent 0f3e5eb commit 2b2069f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.3.5 (2023.08.13)

* Fixed typos

## 0.3.4 (2023.07.12)

* Remove string conversion on struct id when deleting a document.
Expand Down
12 changes: 10 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ defmodule ExTypesense.MixProject do
use Mix.Project

@source_url "https://github.com/jaeyson/ex_typesense"
@version "0.3.4"
@version "0.3.5"

def project do
[
Expand All @@ -11,6 +11,13 @@ defmodule ExTypesense.MixProject do
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
deps: deps(),
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
coveralls: :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test
],
description: "Typesense client for Elixir with support for importing your Ecto schemas.",
docs: docs(),
package: package(),
Expand All @@ -32,7 +39,8 @@ defmodule ExTypesense.MixProject do
{:ex_doc, "~> 0.29.4", only: [:dev, :test], runtime: false},
{:credo, "~> 1.7.0", only: [:dev, :test], runtime: false},
{:req, "~> 0.3.9"},
{:ecto, "~> 3.10.2"}
{:ecto, "~> 3.10.2"},
{:excoveralls, "~> 0.10", only: :test}
]
end

Expand Down

0 comments on commit 2b2069f

Please sign in to comment.