Skip to content

Commit 027e828

Browse files
committed
chore: updated email
1 parent 22aabfe commit 027e828

37 files changed

+38
-38
lines changed

.templates/solution/{{year}}/day{{day}}/rust/Cargo.toml.tpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "aoc{{year}}{{day}}"
33
version = "1.0.0"
4-
authors = ["AlexAegis <alexaegis@gmail.com>"]
4+
authors = ["AlexAegis <alexaegis@pm.me>"]
55
license = "mit"
66
edition = "2021"
77

license

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2023 AlexAegis
3+
Copyright (c) 2024 AlexAegis
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"typescript"
1616
],
1717
"author": {
18-
"email": "alexaegis@gmail.com",
18+
"email": "alexaegis@pm.me",
1919
"name": "Alex Aegis",
2020
"url": "https://github.com/AlexAegis"
2121
},
@@ -25,7 +25,7 @@
2525
"type": "git"
2626
},
2727
"bugs": {
28-
"email": "alexaegis@gmail.com",
28+
"email": "alexaegis@pm.me",
2929
"url": "https://github.com/AlexAegis/advent-of-code/issues"
3030
},
3131
"type": "module",

solutions/python/aoclib/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66
name = "aoclib"
77
version = "0.0.2"
88
authors = [
9-
{ name="AlexAegis", email="alexaegis@gmail.com" },
9+
{ name="AlexAegis", email="alexaegis@pm.me" },
1010
]
1111
description = "Advent of Code Tools"
1212
requires-python = ">=3.11"

solutions/rust/2015/01/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "aoc201501"
33
version = "1.0.0"
4-
authors = ["AlexAegis <alexaegis@gmail.com>"]
4+
authors = ["AlexAegis <alexaegis@pm.me>"]
55
license = "mit"
66
edition = "2021"
77

solutions/rust/2015/02/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "aoc201502"
33
version = "1.0.0"
4-
authors = ["AlexAegis <alexaegis@gmail.com>"]
4+
authors = ["AlexAegis <alexaegis@pm.me>"]
55
license = "mit"
66
edition = "2021"
77

solutions/rust/2015/03/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "aoc201503"
33
version = "1.0.0"
4-
authors = ["AlexAegis <alexaegis@gmail.com>"]
4+
authors = ["AlexAegis <alexaegis@pm.me>"]
55
license = "mit"
66
edition = "2021"
77

solutions/rust/2015/04/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "aoc201504"
33
version = "1.0.0"
4-
authors = ["AlexAegis <alexaegis@gmail.com>"]
4+
authors = ["AlexAegis <alexaegis@pm.me>"]
55
license = "mit"
66
edition = "2021"
77

solutions/rust/2015/05/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "aoc201505"
33
version = "1.0.0"
4-
authors = ["AlexAegis <alexaegis@gmail.com>"]
4+
authors = ["AlexAegis <alexaegis@pm.me>"]
55
license = "mit"
66
edition = "2021"
77

solutions/rust/2016/01/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "aoc201601"
33
version = "1.0.0"
4-
authors = ["AlexAegis <alexaegis@gmail.com>"]
4+
authors = ["AlexAegis <alexaegis@pm.me>"]
55
license = "mit"
66
edition = "2021"
77

solutions/rust/2017/01/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "aoc201701"
33
version = "1.0.0"
4-
authors = ["AlexAegis <alexaegis@gmail.com>"]
4+
authors = ["AlexAegis <alexaegis@pm.me>"]
55
license = "mit"
66
edition = "2021"
77

solutions/rust/2018/01/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "aoc201801"
33
version = "1.0.0"
4-
authors = ["AlexAegis <alexaegis@gmail.com>"]
4+
authors = ["AlexAegis <alexaegis@pm.me>"]
55
license = "mit"
66
edition = "2021"
77

solutions/rust/2019/01/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "aoc201901"
33
version = "1.0.0"
4-
authors = ["AlexAegis <alexaegis@gmail.com>"]
4+
authors = ["AlexAegis <alexaegis@pm.me>"]
55
license = "mit"
66
edition = "2021"
77

solutions/rust/2019/02/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "aoc201902"
33
version = "1.0.0"
4-
authors = ["AlexAegis <alexaegis@gmail.com>"]
4+
authors = ["AlexAegis <alexaegis@pm.me>"]
55
license = "mit"
66
edition = "2021"
77

solutions/rust/2019/03/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "aoc201903"
33
version = "1.0.0"
4-
authors = ["AlexAegis <alexaegis@gmail.com>"]
4+
authors = ["AlexAegis <alexaegis@pm.me>"]
55
license = "mit"
66
edition = "2021"
77

solutions/rust/2019/04/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "aoc201904"
33
version = "1.0.0"
4-
authors = ["AlexAegis <alexaegis@gmail.com>"]
4+
authors = ["AlexAegis <alexaegis@pm.me>"]
55
license = "mit"
66
edition = "2021"
77

solutions/rust/2019/05/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "aoc201905"
33
version = "1.0.0"
4-
authors = ["AlexAegis <alexaegis@gmail.com>"]
4+
authors = ["AlexAegis <alexaegis@pm.me>"]
55
license = "mit"
66
edition = "2021"
77

solutions/rust/2019/06/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "aoc201906"
33
version = "1.0.0"
4-
authors = ["AlexAegis <alexaegis@gmail.com>"]
4+
authors = ["AlexAegis <alexaegis@pm.me>"]
55
license = "mit"
66
edition = "2021"
77

solutions/rust/2019/07/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "aoc201907"
33
version = "1.0.0"
4-
authors = ["AlexAegis <alexaegis@gmail.com>"]
4+
authors = ["AlexAegis <alexaegis@pm.me>"]
55
license = "mit"
66
edition = "2021"
77

solutions/rust/2019/08/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "aoc201908"
33
version = "1.0.0"
4-
authors = ["AlexAegis <alexaegis@gmail.com>"]
4+
authors = ["AlexAegis <alexaegis@pm.me>"]
55
license = "mit"
66
edition = "2021"
77

solutions/rust/2019/09/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "aoc201909"
33
version = "1.0.0"
4-
authors = ["AlexAegis <alexaegis@gmail.com>"]
4+
authors = ["AlexAegis <alexaegis@pm.me>"]
55
license = "mit"
66
edition = "2021"
77

solutions/rust/2019/10/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "aoc201910"
33
version = "1.0.0"
4-
authors = ["AlexAegis <alexaegis@gmail.com>"]
4+
authors = ["AlexAegis <alexaegis@pm.me>"]
55
license = "mit"
66
edition = "2021"
77

solutions/rust/2019/11/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "aoc201911"
33
version = "1.0.0"
4-
authors = ["AlexAegis <alexaegis@gmail.com>"]
4+
authors = ["AlexAegis <alexaegis@pm.me>"]
55
license = "mit"
66
edition = "2021"
77

solutions/rust/2019/12/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "aoc201912"
33
version = "1.0.0"
4-
authors = ["AlexAegis <alexaegis@gmail.com>"]
4+
authors = ["AlexAegis <alexaegis@pm.me>"]
55
license = "mit"
66
edition = "2021"
77

solutions/rust/2019/13/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "aoc201913"
33
version = "1.0.0"
4-
authors = ["AlexAegis <alexaegis@gmail.com>"]
4+
authors = ["AlexAegis <alexaegis@pm.me>"]
55
license = "mit"
66
edition = "2021"
77

solutions/rust/2019/14/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "aoc201914"
33
version = "1.0.0"
4-
authors = ["AlexAegis <alexaegis@gmail.com>"]
4+
authors = ["AlexAegis <alexaegis@pm.me>"]
55
license = "mit"
66
edition = "2021"
77

solutions/rust/2019/15/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "aoc201915"
33
version = "1.0.0"
4-
authors = ["AlexAegis <alexaegis@gmail.com>"]
4+
authors = ["AlexAegis <alexaegis@pm.me>"]
55
license = "mit"
66
edition = "2021"
77

solutions/rust/2019/16/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "aoc201916"
33
version = "1.0.0"
4-
authors = ["AlexAegis <alexaegis@gmail.com>"]
4+
authors = ["AlexAegis <alexaegis@pm.me>"]
55
license = "mit"
66
edition = "2021"
77

solutions/rust/2019/17/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "aoc201917"
33
version = "1.0.0"
4-
authors = ["AlexAegis <alexaegis@gmail.com>"]
4+
authors = ["AlexAegis <alexaegis@pm.me>"]
55
license = "mit"
66
edition = "2021"
77

solutions/rust/2019/18/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "aoc201918"
33
version = "1.0.0"
4-
authors = ["AlexAegis <alexaegis@gmail.com>"]
4+
authors = ["AlexAegis <alexaegis@pm.me>"]
55
license = "mit"
66
edition = "2021"
77

solutions/rust/2019/19/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "aoc201919"
33
version = "1.0.0"
4-
authors = ["AlexAegis <alexaegis@gmail.com>"]
4+
authors = ["AlexAegis <alexaegis@pm.me>"]
55
license = "mit"
66
edition = "2021"
77

solutions/rust/2019/20/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "aoc201920"
33
version = "1.0.0"
4-
authors = ["AlexAegis <alexaegis@gmail.com>"]
4+
authors = ["AlexAegis <alexaegis@pm.me>"]
55
license = "mit"
66
edition = "2021"
77

solutions/rust/2019/21/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "aoc201921"
33
version = "1.0.0"
4-
authors = ["AlexAegis <alexaegis@gmail.com>"]
4+
authors = ["AlexAegis <alexaegis@pm.me>"]
55
license = "mit"
66
edition = "2021"
77

solutions/rust/2019/22/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "aoc201922"
33
version = "1.0.0"
4-
authors = ["AlexAegis <alexaegis@gmail.com>"]
4+
authors = ["AlexAegis <alexaegis@pm.me>"]
55
license = "mit"
66
edition = "2021"
77

solutions/rust/2019/23/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "aoc201923"
33
version = "1.0.0"
4-
authors = ["AlexAegis <alexaegis@gmail.com>"]
4+
authors = ["AlexAegis <alexaegis@pm.me>"]
55
license = "mit"
66
edition = "2021"
77

solutions/rust/2019/24/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "aoc201924"
33
version = "1.0.0"
4-
authors = ["AlexAegis <alexaegis@gmail.com>"]
4+
authors = ["AlexAegis <alexaegis@pm.me>"]
55
license = "mit"
66
edition = "2021"
77

solutions/rust/lib/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "aoclib"
33
version = "1.0.0"
4-
authors = ["AlexAegis <alexaegis@gmail.com>"]
4+
authors = ["AlexAegis <alexaegis@pm.me>"]
55
license = "mit"
66
edition = "2021"
77
repository = "https://github.com/AlexAegis/advent-of-code"

0 commit comments

Comments
 (0)