Skip to content

Commit

Permalink
🚚 docs: Update the author name
Browse files Browse the repository at this point in the history
  • Loading branch information
alexocode committed Apr 18, 2024
1 parent a30eae8 commit 75d6e98
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 16 deletions.
12 changes: 6 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
8 changes: 4 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -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])`.
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2022 Sascha Wolf <[email protected]>
Copyright (c) 2022 Alex Wolf <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion lib/ex_union/docs.ex
Original file line number Diff line number Diff line change
@@ -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!()
Expand Down
4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -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
[
Expand Down Expand Up @@ -98,7 +98,7 @@ defmodule ExUnion.MixProject do
links: %{
"GitHub" => @github
},
maintainers: ["Sascha Wolf <[email protected]>"]
maintainers: ["Alex Wolf <[email protected]>"]
]
end

Expand Down

0 comments on commit 75d6e98

Please sign in to comment.