Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge release-4.3 branch / 4.3.0-rc.1 to main #3571

Merged
merged 2 commits into from
Mar 4, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,3 +63,31 @@ updates:
- "minor"
- "patch"

- package-ecosystem: "gomod" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
day: "friday"
time: "08:00"
target-branch: release-4.3
groups:
moby:
applies-to: "version-updates"
patterns:
- "github.com/moby/*"
- "github.com/docker/*"
containerd:
applies-to: "version-updates"
patterns:
- "github.com/containerd/*"
opencontainers:
applies-to: "version-updates"
patterns:
- "github.com/opencontainers/*"
minor:
applies-to: "version-updates"
patterns:
- "*"
update-types:
- "minor"
- "patch"
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# SingularityCE Changelog

## Changes Since Last Release
## 4.3.0-rc.1 Release Candidate \[2025-03-04\]

### Behaviour Changes

Expand Down
8 changes: 4 additions & 4 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -227,11 +227,11 @@ git submodule update --init
By default your clone will be on the `main` branch which is where development
of SingularityCE happens. To build a specific version of SingularityCE, check
out a [release tag](https://github.com/sylabs/singularity/tags) before
compiling. E.g. to build the 4.2.2 release, checkout the
`v4.2.2` tag:
compiling. E.g. to build the 4.3.0-rc.1 release candidate, checkout the
`v4.3.0-rc.1` tag:

```sh
git checkout --recurse-submodules v4.2.2
git checkout --recurse-submodules v4.3.0-rc.1
```

## Compiling SingularityCE
Expand Down Expand Up @@ -334,7 +334,7 @@ build and install the RPM like this:
<!-- markdownlint-disable MD013 -->

```sh
export VERSION=4.2.2 # this is the singularity version, change as you need
export VERSION=4.3.0-rc.1 # this is the singularity version, change as you need

# Fetch the source
wget https://github.com/sylabs/singularity/releases/download/v${VERSION}/singularity-ce-${VERSION}.tar.gz
Expand Down