diff --git a/CHANGELOG.md b/CHANGELOG.md index 502869e..3841d84 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,7 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [v0.1.1] - 2022-11-16 ### Changed -- [#2](https://github.com/sascha-wolf/ex_union/pull/2): Resolve dialyzer warnings ([@sascha-wolf]) +- [#2](https://github.com/alexocode/ex_union/pull/2): Resolve dialyzer warnings ([@alexocode]) ## [v0.1.0] - 2022-10-16 @@ -27,9 +27,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Generate shortcut functions for each union case - Generate a guard whose name is inferred from the top-level module -[Unreleased]: https://github.com/sascha-wolf/ex_union/compare/v0.1.2...main -[v0.1.2]: https://github.com/sascha-wolf/ex_union/compare/v0.1.1...v0.1.2 -[v0.1.1]: https://github.com/sascha-wolf/ex_union/compare/v0.1.0...v0.1.1 -[v0.1.0]: https://github.com/sascha-wolf/ex_union/compare/744dd7dc078c5e9d2311f11a223f326665d9a38b...v0.1.0 +[Unreleased]: https://github.com/alexocode/ex_union/compare/v0.1.2...main +[v0.1.2]: https://github.com/alexocode/ex_union/compare/v0.1.1...v0.1.2 +[v0.1.1]: https://github.com/alexocode/ex_union/compare/v0.1.0...v0.1.1 +[v0.1.0]: https://github.com/alexocode/ex_union/compare/744dd7dc078c5e9d2311f11a223f326665d9a38b...v0.1.0 -[@sascha-wolf]: https://github.com/sascha-wolf +[@alexocode]: https://github.com/alexocode diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c2c4f8d..ca14c71 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,7 +1,7 @@ # Contributing If you discover issues, have ideas for improvements or new features, -please [open an issue](https://github.com/sascha-wolf/ex_union/issues) +please [open an issue](https://github.com/alexocode/ex_union/issues) or submit a pull request. Make sure to follow the following guidelines when doing so. @@ -33,13 +33,13 @@ Make sure to follow the following guidelines when doing so. Here are a few examples: ``` -- [#19](https://github.com/sascha-wolf/ex_union/pull/42): Fix the annoying thing ([@AmazingGitHubUser]) -- [#16](https://github.com/sascha-wolf/ex_union/pull/1337): Add caching to GitHub Actions ([@sascha-wolf]) +- [#19](https://github.com/alexocode/ex_union/pull/42): Fix the annoying thing ([@AmazingGitHubUser]) +- [#16](https://github.com/alexocode/ex_union/pull/1337): Add caching to GitHub Actions ([@alexocode]) ``` * Mark it up in [Markdown syntax](https://daringfireball.net/projects/markdown/syntax). * The entry line should start with `- ` (a dash and a space). -* Begin with a link to your pull request (`[#456](https://github.com/sascha-wolf/ex_union/pull/456): `) +* Begin with a link to your pull request (`[#456](https://github.com/alexocode/ex_union/pull/456): `) * Describe the core idea of the change. * If this is a breaking change, mark it with `**(Breaking)**`. * At the end of the entry, add an implicit link to your GitHub user page as `([@username])`. diff --git a/LICENSE.md b/LICENSE.md index 77f7933..08500c1 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2022 Sascha Wolf +Copyright (c) 2022 Alex Wolf 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/README.md b/README.md index 9717aa6..3ffaebc 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # ExUnion -[![CI](https://github.com/sascha-wolf/ex_union/workflows/CI/badge.svg)](https://github.com/sascha-wolf/ex_union/actions?query=workflow%3ACI+branch%3Amain) -[![Coverage Status](https://coveralls.io/repos/github/sascha-wolf/ex_union/badge.svg?branch=main)](https://coveralls.io/github/sascha-wolf/ex_union?branch=main) +[![CI](https://github.com/alexocode/ex_union/workflows/CI/badge.svg)](https://github.com/alexocode/ex_union/actions?query=workflow%3ACI+branch%3Amain) +[![Coverage Status](https://coveralls.io/repos/github/alexocode/ex_union/badge.svg?branch=main)](https://coveralls.io/github/alexocode/ex_union?branch=main) [![Hexdocs.pm](https://img.shields.io/badge/hexdocs-online-blue)](https://hexdocs.pm/ex_union) [![Hex.pm](https://img.shields.io/hexpm/v/ex_union.svg)](https://hex.pm/packages/ex_union) [![Hex.pm Downloads](https://img.shields.io/hexpm/dt/ex_union)](https://hex.pm/packages/ex_union) diff --git a/lib/ex_union/docs.ex b/lib/ex_union/docs.ex index 2e5f524..66d644f 100644 --- a/lib/ex_union/docs.ex +++ b/lib/ex_union/docs.ex @@ -1,7 +1,7 @@ defmodule ExUnion.Docs do @moduledoc false - @repo "https://github.com/sascha-wolf/ex_union/blob/main" + @repo "https://github.com/alexocode/ex_union/blob/main" def massage_readme(path, for: module) do path |> File.read!() diff --git a/mix.exs b/mix.exs index a8a6801..35bda1d 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule ExUnion.MixProject do use Mix.Project - @github "https://github.com/sascha-wolf/ex_union" + @github "https://github.com/alexocode/ex_union" def project do [ @@ -98,7 +98,7 @@ defmodule ExUnion.MixProject do links: %{ "GitHub" => @github }, - maintainers: ["Sascha Wolf "] + maintainers: ["Alex Wolf "] ] end