Skip to content

Commit

Permalink
Merge pull request #639 from dtrudg/396-changelog
Browse files Browse the repository at this point in the history
Update 3.9.6 markdown files & plugin examples go.mod
  • Loading branch information
dtrudg authored Mar 10, 2022
2 parents ab5e9e2 + 9dacb0a commit 876b2f1
Show file tree
Hide file tree
Showing 10 changed files with 1,500 additions and 139 deletions.
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
## v3.9.6 \[2022-03-10\]

### New features / functionalities

Expand Down
8 changes: 4 additions & 4 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ _**NOTE:** if you are updating Go from a older version, make sure you remove
`/usr/local/go` before reinstalling it._

```sh
export VERSION=1.17.7 OS=linux ARCH=amd64 # change this as you need
export VERSION=1.17.8 OS=linux ARCH=amd64 # change this as you need

wget -O /tmp/go${VERSION}.${OS}-${ARCH}.tar.gz \
https://dl.google.com/go/go${VERSION}.${OS}-${ARCH}.tar.gz
Expand Down Expand Up @@ -107,10 +107,10 @@ cd singularity
By default your clone will be on the `master` 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 3.9.5 release checkout the `v3.9.5` tag:
compiling. E.g. to build the 3.9.6 release checkout the `v3.9.6` tag:

```sh
git checkout v3.9.5
git checkout v3.9.6
```

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

```sh
export VERSION=3.9.4 # this is the singularity version, change as you need
export VERSION=3.9.6 # 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
2 changes: 1 addition & 1 deletion e2e/plugin/testdata/cli/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/sylabs/singularity/e2e-cli-plugin
go 1.13

require (
github.com/spf13/cobra v1.0.0
github.com/spf13/cobra v1.4.0
github.com/sylabs/singularity v0.0.0
)

Expand Down
5 changes: 1 addition & 4 deletions e2e/plugin/testdata/runtime_singularity/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@ module github.com/sylabs/singularity/e2e-cli-plugin

go 1.13

require (
github.com/spf13/cobra v1.0.0
github.com/sylabs/singularity v0.0.0
)
require github.com/sylabs/singularity v0.0.0

replace github.com/sylabs/singularity => ./singularity_source
2 changes: 1 addition & 1 deletion examples/plugins/cli-plugin/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/sylabs/singularity/cli-example-plugin
go 1.13

require (
github.com/spf13/cobra v1.2.1
github.com/spf13/cobra v1.4.0
github.com/sylabs/singularity v0.0.0
)

Expand Down
396 changes: 368 additions & 28 deletions examples/plugins/cli-plugin/go.sum

Large diffs are not rendered by default.

420 changes: 382 additions & 38 deletions examples/plugins/config-plugin/go.sum

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion examples/plugins/log-plugin/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/sylabs/singularity/log-plugin
go 1.13

require (
github.com/spf13/cobra v1.2.1
github.com/spf13/cobra v1.4.0
github.com/sylabs/singularity v0.0.0
)

Expand Down
396 changes: 368 additions & 28 deletions examples/plugins/log-plugin/go.sum

Large diffs are not rendered by default.

406 changes: 373 additions & 33 deletions examples/plugins/ubuntu-userns-overlay-plugin/go.sum

Large diffs are not rendered by default.

0 comments on commit 876b2f1

Please sign in to comment.