Skip to content

Commit 6a5ee7f

Browse files
authored
Merge pull request #114 from rust-embedded/bump-version
version: 0.6.0 -> 0.7.0
2 parents d7b90b1 + 0f24b5f commit 6a5ee7f

File tree

3 files changed

+5
-10
lines changed

3 files changed

+5
-10
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

8-
## [Unreleased]
8+
## [v0.7.0] - 2026-01-03
99

1010
### Added
1111

@@ -142,7 +142,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
142142

143143
- Initial version of the allocator
144144

145-
[Unreleased]: https://github.com/rust-embedded/embedded-alloc/compare/v0.6.0...HEAD
145+
[Unreleased]: https://github.com/rust-embedded/embedded-alloc/compare/v0.7.0...HEAD
146+
[v0.7.0]: https://github.com/rust-embedded/embedded-alloc/compare/v0.6.0...v0.7.0
146147
[v0.6.0]: https://github.com/rust-embedded/embedded-alloc/compare/v0.5.1...v0.6.0
147148
[v0.5.1]: https://github.com/rust-embedded/embedded-alloc/compare/v0.5.0...v0.5.1
148149
[v0.5.0]: https://github.com/rust-embedded/embedded-alloc/compare/v0.4.3...v0.5.0

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ keywords = [
2121
]
2222
license = "MIT OR Apache-2.0"
2323
name = "embedded-alloc"
24-
version = "0.6.0"
24+
version = "0.7.0"
2525

2626
[features]
2727
default = ["llff", "tlsf"]

README.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,15 @@
11
[![crates.io](https://img.shields.io/crates/d/embedded-alloc.svg)](https://crates.io/crates/embedded-alloc)
2-
[![crates.io](https://img.shields.io/crates/v/embedded-alloc.svg)](https://crates.io/crates/embedded-alloc)
3-
![Minimum Supported Rust Version](https://img.shields.io/badge/rustc-1.68+-blue.svg) -
2+
[![crates.io](https://img.shields.io/crates/v/embedded-alloc.svg)](https://crates.io/crates/embedded-alloc) -
43
[Documentation](https://docs.rs/embedded-alloc) - [Change log](https://github.com/rust-embedded/embedded-alloc/blob/master/CHANGELOG.md)
54

65
# `embedded-alloc`
76

87
> A heap allocator for embedded systems.
98
10-
Note that using this as your global allocator requires Rust 1.68 or later.
11-
(With earlier versions, you need the unstable feature `#![feature(default_alloc_error_handler)]`)
12-
139
This project is developed and maintained by the [libs team][team].
1410

1511
## Example
1612

17-
Starting with Rust 1.68, this crate can be used as a global allocator on stable Rust:
18-
1913
```rust
2014
#![no_std]
2115
#![no_main]

0 commit comments

Comments
 (0)