Skip to content

Commit 1fed189

Browse files
authored
Merge pull request #830 from cgwalters/bump-version
lib: Bump version to 1.1.0
2 parents 3b49fc5 + e92be55 commit 1fed189

17 files changed

+24
-24
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cli/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ platforms = ["x86_64-unknown-linux-gnu", "aarch64-unknown-linux-gnu", "powerpc64
1919

2020
[dependencies]
2121
anyhow = { workspace = true }
22-
bootc-lib = { version = "0.1", path = "../lib" }
22+
bootc-lib = { version = "1.0", path = "../lib" }
2323
clap = { workspace = true }
2424
tokio = { workspace = true, features = ["macros"] }
2525
log = "0.4.21"

docs/src/man/bootc-container-lint.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ part of a build process; it will error if any problems are detected.
2323

2424
# VERSION
2525

26-
v0.1.16
26+
v1.1.0

docs/src/man/bootc-container.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ bootc-container-help(8)
3030

3131
# VERSION
3232

33-
v0.1.16
33+
v1.1.0

docs/src/man/bootc-edit.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ Only changes to the \`spec\` section are honored.
3636

3737
# VERSION
3838

39-
v0.1.16
39+
v1.1.0

docs/src/man/bootc-install-print-configuration.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ string-valued filesystem name suitable for passing to \`mkfs.\$type\`.
2727

2828
# VERSION
2929

30-
v0.1.16
30+
v1.1.0

docs/src/man/bootc-install-to-disk.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -149,4 +149,4 @@ firmware will be skipped
149149

150150
# VERSION
151151

152-
v0.1.16
152+
v1.1.0

docs/src/man/bootc-install-to-existing-root.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,4 +134,4 @@ firmware will be skipped
134134

135135
# VERSION
136136

137-
v0.1.16
137+
v1.1.0

docs/src/man/bootc-install-to-filesystem.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -161,4 +161,4 @@ mounting. To override this, use \`\--root-mount-spec\`.
161161

162162
# VERSION
163163

164-
v0.1.16
164+
v1.1.0

docs/src/man/bootc-install.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ bootc-install - Install the running container to a target
1010

1111
Install the running container to a target.
1212

13-
## Understanding installations
13+
\## Understanding installations
1414

1515
OCI containers are effectively layers of tarballs with JSON for
1616
metadata; they cannot be booted directly. The \`bootc install\` flow is
@@ -61,4 +61,4 @@ bootc-install-help(8)
6161

6262
# VERSION
6363

64-
v0.1.16
64+
v1.1.0

docs/src/man/bootc-rollback.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ rollback invocation.
3434

3535
# VERSION
3636

37-
v0.1.16
37+
v1.1.0

docs/src/man/bootc-status.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ bootc system state. If standard output is not a terminal, output a
1616
YAML-formatted object using a schema intended to match a Kubernetes
1717
resource that describes the state of the booted system.
1818

19-
## Parsing output via programs
19+
\## Parsing output via programs
2020

2121
Either the default YAML format or \`\--format=json\` can be used. Do not
2222
attempt to explicitly parse the output of \`\--format=humanreadable\` as
2323
it will very likely change over time.
2424

25-
## Programmatically detecting whether the system is deployed via bootc
25+
\## Programmatically detecting whether the system is deployed via bootc
2626

2727
Invoke e.g. \`bootc status \--json\`, and check if \`status.booted\` is
2828
not \`null\`.
@@ -59,4 +59,4 @@ not \`null\`.
5959

6060
# VERSION
6161

62-
v0.1.16
62+
v1.1.0

docs/src/man/bootc-switch.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Target a new container image reference to boot.
1515
This is almost exactly the same operation as \`upgrade\`, but
1616
additionally changes the container image reference instead.
1717

18-
## Usage
18+
\## Usage
1919

2020
A common pattern is to have a management agent control operating system
2121
updates via container image tags; for example,
@@ -69,4 +69,4 @@ includes a default policy which requires signatures.
6969

7070
# VERSION
7171

72-
v0.1.16
72+
v1.1.0

docs/src/man/bootc-upgrade.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@ userspace-only restart.
5252

5353
# VERSION
5454

55-
v0.1.16
55+
v1.1.0

docs/src/man/bootc-usr-overlay.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,20 @@ will be discarded on reboot
1212
Adds a transient writable overlayfs on \`/usr\` that will be discarded
1313
on reboot.
1414

15-
## Use cases
15+
\## Use cases
1616

1717
A common pattern is wanting to use tracing/debugging tools, such as
1818
\`strace\` that may not be in the base image. A system package manager
1919
such as \`apt\` or \`dnf\` can apply changes into this transient overlay
2020
that will be discarded on reboot.
2121

22-
## /etc and /var
22+
\## /etc and /var
2323

2424
However, this command has no effect on \`/etc\` and \`/var\` - changes
2525
written there will persist. It is common for package installations to
2626
modify these directories.
2727

28-
## Unmounting
28+
\## Unmounting
2929

3030
Almost always, a system process will hold a reference to the open mount
3131
point. You can however invoke \`umount -l /usr\` to perform a \"lazy
@@ -39,4 +39,4 @@ unmount\".
3939

4040
# VERSION
4141

42-
v0.1.16
42+
v1.1.0

docs/src/man/bootc.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,4 +72,4 @@ bootc-help(8)
7272

7373
# VERSION
7474

75-
v0.1.16
75+
v1.1.0

lib/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ license = "MIT OR Apache-2.0"
55
name = "bootc-lib"
66
readme = "README.md"
77
repository = "https://github.com/containers/bootc"
8-
version = "0.1.16"
8+
version = "1.1.0"
99
# For now don't bump this above what is currently shipped in RHEL9;
1010
# also keep in sync with the version in cli.
1111
rust-version = "1.75.0"

0 commit comments

Comments
 (0)