Skip to content
Closed
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
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).

## 0.10.1 - 2024-07-26

- Update all dependencies to remove warnings
- Update to the latest elixir version.

## 0.10.0 - 2021-05-20

- Documentation changes
Expand Down
8 changes: 4 additions & 4 deletions config/config.exs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is responsible for configuring your application
# and its dependencies with the aid of the Mix.Config module.
use Mix.Config
# and its dependencies with the aid of the Config module.
import Config

# This configuration is loaded before any dependency and is restricted
# to this project. If another project depends on this project, this
Expand All @@ -21,5 +21,5 @@ use Mix.Config
# Configuration from the imported file will override the ones defined
# here (which is why it is important to import them last).
#
# import_config "#{Mix.env}.exs"
if Mix.env() == :test || Mix.env() == :dev, do: import_config("#{Mix.env()}.exs")
# import_config "#{Mix.env()}.exs"
if Mix.env() in [:test, :dev], do: import_config("#{Mix.env()}.exs")
2 changes: 1 addition & 1 deletion config/dev.exs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use Mix.Config
import Config

config :mix_test_watch,
tasks: [
Expand Down
2 changes: 1 addition & 1 deletion config/test.exs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use Mix.Config
import Config

config :elastix,
test_url: "http://127.0.0.1:9200",
Expand Down
16 changes: 8 additions & 8 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ defmodule Elastix.Mixfile do
use Mix.Project

@source_url "https://github.com/werbitzky/elastix"
@version "0.10.0"
@version "0.10.1"

def project do
[
app: :elastix,
name: "Elastix",
version: @version,
elixir: "~> 1.6",
elixir: "~> 1.17.1",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
aliases: aliases(),
Expand All @@ -27,12 +27,12 @@ defmodule Elastix.Mixfile do

defp deps do
[
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
{:credo, "~> 0.6", only: [:dev, :test]},
{:mix_test_watch, "~> 0.3", only: [:test, :dev]},
{:poison, "~> 3.0 or ~> 4.0", optional: true},
{:httpoison, "~> 1.4"},
{:retry, "~> 0.8"}
{:ex_doc, "~> 0.31", only: :dev, runtime: false},
{:credo, "~> 1.7", only: [:dev, :test]},
{:mix_test_watch, "~> 1.0", only: [:test, :dev]},
{:poison, "~> 6.0", optional: true},
{:httpoison, "~> 2.0"},
{:retry, "~> 0.18"}
]
end

Expand Down