From 6e25a0b8b8abac9f1d85bbe95f8bb0533ace3292 Mon Sep 17 00:00:00 2001 From: Marc Neudert Date: Sun, 8 Sep 2019 16:07:47 +0200 Subject: [PATCH] Release v1.0.0 --- CHANGELOG.md | 2 +- README.md | 2 +- mix.exs | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6eaff9e..1be82d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## v1.0.0-dev +## v1.0.0 (2019-09-08) The adapter `Geolix.Adapter.MMDB2` has been extracted a [separate repository](https://github.com/elixir-geolix/adapter_mmdb2). You should be able to upgrade to the external adapter by changing your project's dependencies from `:geolix` to `:geolix_adapter_mmdb2` with an appropriate version requirement. diff --git a/README.md b/README.md index 3c17156..c89b801 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ To use Geolix with your projects, edit your `mix.exs` file and add the project a defp deps do [ # ... - {:geolix, "~> 0.18"}, + {:geolix, "~> 1.0"}, # ... ] end diff --git a/mix.exs b/mix.exs index 50dfd69..c5c954e 100644 --- a/mix.exs +++ b/mix.exs @@ -7,7 +7,7 @@ defmodule Geolix.MixProject do [ app: :geolix, name: "Geolix", - version: "1.0.0-dev", + version: "1.0.0", elixir: "~> 1.5", deps: deps(), description: "IP location lookup provider", @@ -56,7 +56,7 @@ defmodule Geolix.MixProject do [ extras: ["CHANGELOG.md", "README.md"], main: "readme", - source_ref: "master", + source_ref: "v1.0.0", source_url: @url_github ] end