Skip to content

Commit 2b03ff5

Browse files
authored
release: supersede the version that was published with files that are not the package (#3)
The previous version was tagged, released and mirrored, and then found to carry two files that describe a machine rather than the package. Removing them changes what the package is, and a published artifact cannot be changed: the mirror allows neither replacing an asset nor deleting a release, which is the property that makes a pinned sha256 mean something. So the cleaned tree is a new version rather than a second meaning for the old one. The old tag stands, is consistent in both regions, and is not carried by the index; this is the version the index carries. That is what a patch version is for, and the sequence is the reason the index is the last gate rather than a parallel one: nothing had been written there yet, so nothing has to be withdrawn.
1 parent c4a7330 commit 2b03ff5

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ written on the kernel's own calls.
55

66
```toml
77
[dependencies]
8-
openkal = "0.5.0"
8+
openkal = "0.5.1"
99

1010
[target.'cfg(os = "macos")'.dependencies]
11-
openkal-macos = "0.3.0"
11+
openkal-macos = "0.3.1"
1212
```
1313

1414
Its purpose is as much to test the specification as to be used. A specification

mcpp.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
namespace = "mcpplibs"
33
name = "openkal-macos"
4-
version = "0.3.0"
4+
version = "0.3.1"
55
description = "An implementation of openkal for macOS, written on the kernel's own calls. Its purpose is as much to test the specification as to be used."
66
license = "Apache-2.0"
77
authors = ["mcpplibs"]
88
repo = "https://github.com/mcpplibs/openkal-macos"
99

1010
[dependencies]
11-
openkal = "0.5.0"
11+
openkal = "0.5.1"
1212

1313
[build]
1414
# The flags are attached to this package's own sources rather than to the whole

0 commit comments

Comments
 (0)