Current section
5 Versions
Jump to
Current section
5 Versions
Compare versions
3
files changed
+6
additions
-8
deletions
| @@ -5,9 +5,7 @@ All notable changes to this project will be documented in this file. | |
| 5 5 | The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), |
| 6 6 | and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
| 7 7 | |
| 8 | - ## [Unreleased] |
| 9 | - |
| 10 | - ## [0.1.0] - 2024-01-XX |
| 8 | + ## [0.1.0] - 2025-06-24 |
| 11 9 | |
| 12 10 | ### Added |
| 13 11 | - Initial release |
| @@ -23,4 +21,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 | |
| 23 21 | - Variable precision support (6-20 character grid references) |
| 24 22 | - Coordinate normalization and bounds checking |
| 25 23 | - Base 18, 10, and 24 conversion utilities |
| 26 | - - Extended precision calculation with alternating base pairs |
| \ No newline at end of file | |
| 24 | + - Extended precision calculation with alternating base pairs |
| @@ -2,12 +2,12 @@ | |
| 2 2 | [{<<"GitHub">>,<<"https://github.com/gmcintire/gridsquare">>}, |
| 3 3 | {<<"HexDocs">>,<<"https://hexdocs.pm/gridsquare">>}]}. |
| 4 4 | {<<"name">>,<<"gridsquare">>}. |
| 5 | - {<<"version">>,<<"0.1.0">>}. |
| 5 | + {<<"version">>,<<"0.1.1">>}. |
| 6 6 | {<<"description">>, |
| 7 7 | <<"GridSquare calculator for encoding/decoding between latitude/longitude and Maidenhead Locator System grid references">>}. |
| 8 8 | {<<"elixir">>,<<"~> 1.16">>}. |
| 9 9 | {<<"app">>,<<"gridsquare">>}. |
| 10 | - {<<"licenses">>,[<<"MIT">>]}. |
| 10 | + {<<"licenses">>,[<<"GPL-2.0">>]}. |
| 11 11 | {<<"files">>, |
| 12 12 | [<<"lib">>,<<"lib/gridsquare.ex">>,<<".formatter.exs">>,<<"mix.exs">>, |
| 13 13 | <<"README.md">>,<<"LICENSE">>,<<"CHANGELOG.md">>]}. |
| @@ -1,7 +1,7 @@ | |
| 1 1 | defmodule Gridsquare.MixProject do |
| 2 2 | use Mix.Project |
| 3 3 | |
| 4 | - @version "0.1.0" |
| 4 | + @version "0.1.1" |
| 5 5 | @source_url "https://github.com/gmcintire/gridsquare" |
| 6 6 | |
| 7 7 | def project do |
| @@ -53,7 +53,7 @@ defmodule Gridsquare.MixProject do | |
| 53 53 | defp package do |
| 54 54 | [ |
| 55 55 | maintainers: ["Graham McIntire"], |
| 56 | - licenses: ["MIT"], |
| 56 | + licenses: ["GPL-2.0"], |
| 57 57 | links: %{ |
| 58 58 | "GitHub" => @source_url, |
| 59 59 | "HexDocs" => "https://hexdocs.pm/gridsquare" |