aboutsummaryrefslogtreecommitdiff
path: root/CHANGELOG.md
blob: d7d52e7cc0bf81622cc420d0ea3dfe105ca2448d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Changelog

## 0.1.1

### Bugfixes

- Fixed docs.rs to build for aarch64.

## 0.1.0

Renamed crate to `smccc`.

### Breaking changes

- Moved PSCI code to the `psci` module, moved other modules up one level.
- Use type parameters rather than features to specify HVC vs. SMC for PSCI and arch calls.
- Changed `error::Error::Unknown` to contain an `i64` rather than an `i32`.

## `psci` 0.1.3

### Bugfixes

- Fixed type of `smccc::error::success_or_error_64`. This is a breaking change relative to 0.1.2 but
  it was yanked.

## `psci` 0.1.2 (yanked)

### New features

- Added constants, types and functions for standard Arm architucture SMCCC calls, in `smccc::arch`
  module.
- Added helpers in `smccc::error` module for handling negative return values as errors.

## `psci` 0.1.1

### New features

- Exposed functions for SMC and HVC calls for use outside of PSCI.

## `psci` 0.1.0

Initial release with PSCI constants and functions.