diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..35247ed --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,5 @@ +# Changelog + +## v1.0.0 + +Production release. diff --git a/LICENSE.txt b/LICENSE.txt index 2656661..ee8101e 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright 2023 Alex McLain +Copyright 2023 Redwire Labs LLC Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/mix.exs b/mix.exs index d715de6..8dea224 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule Speck.MixProject do def project do [ app: :speck, - version: "0.2.0", + version: "1.0.0", elixir: "~> 1.14", start_permanent: Mix.env == :prod, compilers: Mix.compilers ++ [:speck], @@ -53,18 +53,19 @@ defmodule Speck.MixProject do defp docs do [ main: "readme", - extras: ["README.md", "LICENSE.txt"] + extras: ["CHANGELOG.md", "README.md", "LICENSE.txt"] ] end defp package do [ licenses: ["MIT"], - links: %{"GitHub" => "https://github.com/amclain/speck"}, + links: %{"GitHub" => "https://github.com/redwirelabs/speck"}, maintainers: ["Alex McLain"], files: [ "lib", "mix.exs", + "CHANGELOG.md", "LICENSE.txt", "README.md", ]