Skip to content

Commit b03053a

Browse files
authored
Merge branch 'main' into add-cncf-slack
2 parents ee49808 + 69d5702 commit b03053a

30 files changed

+56
-46
lines changed

Cargo.lock

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,14 @@ can be upgraded in place seamlessly across any future changes.
2626

2727
See the [project documentation](https://bootc-dev.github.io/bootc/).
2828

29+
## Versioning
30+
31+
Although bootc is not released to crates.io as a library, version
32+
numbers are expected to follow [semantic
33+
versioning](https://semver.org/) standards. This practice began with
34+
the release of version 1.2.0; versions prior may not adhere strictly
35+
to semver standards.
36+
2937
## Adopters (base and end-user images)
3038

3139
The bootc CLI is just a client system; it is not tied to any particular
@@ -47,6 +55,7 @@ Are you interested in working on bootc? Great! See our [CONTRIBUTING.md](CONTR
4755
There is also a list of [MAINTAINERS.md](MAINTAINERS.md).
4856

4957
## Governance
58+
See [GOVERNANCE.md](GOVERNANCE.md) for project governance details.
5059

5160
## Badges
5261

blockdev/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ publish = false
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
77
name = "bootc-blockdev"
8-
repository = "https://github.com/containers/bootc"
8+
repository = "https://github.com/bootc-dev/bootc"
99
version = "0.0.0"
1010

1111
[dependencies]

cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "bootc"
33
version = "0.1.9"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
6-
repository = "https://github.com/containers/bootc"
6+
repository = "https://github.com/bootc-dev/bootc"
77
readme = "README.md"
88
publish = false
99
default-run = "bootc"

contrib/packaging/bootc.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Summary: Bootable container system
2525
# MIT OR Apache-2.0
2626
# Unlicense OR MIT
2727
License: Apache-2.0 AND BSD-3-Clause AND MIT AND (Apache-2.0 OR BSL-1.0) AND (Apache-2.0 OR MIT) AND (Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT) AND (Unlicense OR MIT)
28-
URL: https://github.com/containers/bootc
28+
URL: https://github.com/bootc-dev/bootc
2929
Source0: %{url}/releases/download/v%{version}/bootc-%{version}.tar.zstd
3030
Source1: %{url}/releases/download/v%{version}/bootc-%{version}-vendor.tar.zstd
3131

docs/_config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ color_scheme: coreos
3333
# Aux links for the upper right navigation
3434
aux_links:
3535
"bootc on GitHub":
36-
- "https://github.com/containers/bootc"
36+
- "https://github.com/bootc-dev/bootc"
3737

3838
footer_content: "Copyright &copy; <a href=\"https://www.redhat.com\">Red Hat, Inc.</a> and <a href=\"https://github.com/containers\">others</a>."
3939

@@ -44,7 +44,7 @@ last_edit_time_format: "%b %e %Y at %I:%M %p"
4444
# Footer "Edit this page on GitHub" link text
4545
gh_edit_link: true
4646
gh_edit_link_text: "Edit this page on GitHub"
47-
gh_edit_repository: "https://github.com/containers/bootc"
47+
gh_edit_repository: "https://github.com/bootc-dev/bootc"
4848
gh_edit_branch: "main"
4949
gh_edit_source: docs
5050
gh_edit_view_mode: "tree"

docs/src/bootc-images.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ requirements.
1313

1414
## ostree-in-container
1515

16-
With [bootc 1.1.3](https://github.com/containers/bootc/releases/tag/v1.1.3)
16+
With [bootc 1.1.3](https://github.com/bootc-dev/bootc/releases/tag/v1.1.3)
1717
or later, it is no longer required to have a `/ostree` directory
1818
present in the base image.
1919

@@ -34,7 +34,7 @@ which is used by the [Fedora base image](https://gitlab.com/fedora/bootc/base-im
3434

3535
## Standard image content
3636

37-
The bootc project provides a [baseimage](https://github.com/containers/bootc/tree/main/baseimage) reference
37+
The bootc project provides a [baseimage](https://github.com/bootc-dev/bootc/tree/main/baseimage) reference
3838
set of configuration files for base images. In particular at
3939
the current time the content defined by `base` must be used
4040
(or recreated). There is also suggested integration there with

docs/src/building/guidance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ inside the container image filesystem itself.
6262

6363
Special care and code changes will need to be made to container
6464
runtimes to support such nesting. Some more discussion in
65-
[this tracker issue](https://github.com/containers/bootc/issues/128).
65+
[this tracker issue](https://github.com/bootc-dev/bootc/issues/128).
6666

6767
## systemd units
6868

docs/src/experimental-bootc-image.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Experimental features are subject to change or removal. Please
44
do provide feedback on them.
55

6-
Tracking issue: <https://github.com/containers/bootc/issues/690>
6+
Tracking issue: <https://github.com/bootc-dev/bootc/issues/690>
77

88
## Using `bootc image copy-to-storage`
99

docs/src/experimental-progress-fd.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# Interactive progress with `--progress-fd`
33

4-
This is an experimental feature; tracking issue: <https://github.com/containers/bootc/issues/1016>
4+
This is an experimental feature; tracking issue: <https://github.com/bootc-dev/bootc/issues/1016>
55

66
While the `bootc status` tooling allows a client to discover the state
77
of the system, during interactive changes such as `bootc upgrade`

0 commit comments

Comments
 (0)