Skip to content

Commit c5e164f

Browse files
committed
Update release info for static-alloc-v0.2.6
1 parent 2c78217 commit c5e164f

File tree

12 files changed

+14
-14
lines changed

12 files changed

+14
-14
lines changed

LICENSE.MIT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright 2019 Andreas Molzer
1+
Copyright 2019 Aurelia Molzer
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
44

LICENSE.ZLIB

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2021 Andreas Molzer
1+
Copyright (c) 2021 Aurelia Molzer
22

33
This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software.
44

alloc-traits/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "alloc-traits"
33
version = "0.1.1"
44
description = "Traits to replace or supplement the alloc module in no_std"
5-
authors = ["Andreas Molzer <[email protected]>"]
5+
authors = ["Aurelia Molzer <[email protected]>"]
66
edition = "2018"
77
license = "MIT OR Apache-2.0 OR Zlib"
88
documentation = "https://docs.rs/static-alloc"

alloc-traits/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
//! [`static-alloc`]: https://crates.io/crates/static-alloc
1616
//! [`without-alloc`]: https://crates.io/crates/without-alloc
1717
18-
// Copyright 2019-2021 Andreas Molzer
18+
// Copyright 2019-2021 Aurelia Molzer
1919
#![no_std]
2020
#![deny(missing_docs)]
2121

exit-stack/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "exit-stack"
33
version = "0.1.0"
44
description = "Dynamically pin values to the stack, with no macros."
5-
authors = ["Andreas Molzer <[email protected]>"]
5+
authors = ["Aurelia Molzer <[email protected]>"]
66
edition = "2018"
77
license = "MIT"
88
documentation = "https://docs.rs/exit-stack"

fill/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "fill"
33
version = "0.1.1"
44
description = "Provides the Fill trait, an alternative to Extend for finite containers"
5-
authors = ["Andreas Molzer <[email protected]>"]
5+
authors = ["Aurelia Molzer <[email protected]>"]
66
edition = "2018"
77
license = "MIT OR Apache-2.0 OR Zlib"
88
documentation = "https://docs.rs/fill"

static-alloc/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "static-alloc"
3-
version = "0.2.5"
3+
version = "0.2.6"
44
description = "A bump allocator on static memory for the alloc-traits crate"
5-
authors = ["Andreas Molzer <[email protected]>"]
5+
authors = ["Aurelia Molzer <[email protected]>"]
66
edition = "2018"
77
license = "MIT OR Apache-2.0 OR Zlib"
88
documentation = "https://docs.rs/static-alloc"
9-
repository = "https://github.com/HeroicKatora/static-alloc"
9+
repository = "https://github.com/197g/static-alloc"
1010
readme = "Readme.md"
1111
categories = ["embedded", "memory-management", "no-std"]
1212

static-alloc/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
//! dynamic values without accidentally exposing or using uninitialized memory. This allows
4141
//! obtaining `&'static mut T` instances which is handy if a struct requires a mutable reference
4242
//! but it is also required that this struct has `'static` lifetime bounds itself.
43-
// Copyright 2019,2022 Andreas Molzer
43+
// Copyright 2019,2022 Aurelia Molzer
4444
#![no_std]
4545
#![deny(missing_docs)]
4646

unsize/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "unsize"
33
version = "1.1.0"
44
description = "A stable alternative to CoerceUnsized"
5-
authors = ["Andreas Molzer <[email protected]>"]
5+
authors = ["Aurelia Molzer <[email protected]>"]
66
edition = "2018"
77
license = "MIT OR Apache-2.0 OR Zlib"
88
documentation = "https://docs.rs/unsize"

unsize/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
//! conversion correctly. The _using_ this function is safe and enables any particular user-defined
1313
//! pointer wrapper to safely transform itself. Note that for a limited selection of standard
1414
//! traits we can even go so far as offer pre-built converters that are safe to use in general.
15-
// Copyright 2019-2021 Andreas Molzer
15+
// Copyright 2019-2021 Aurelia Molzer
1616
#![no_std]
1717
#![deny(missing_docs)]
1818

0 commit comments

Comments
 (0)