Skip to content

Commit cfc97ef

Browse files
committed
rig 0.10.0-alpha2
1 parent b7f7cf3 commit cfc97ef

7 files changed

Lines changed: 11 additions & 11 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ members = ["xtask"]
88

99
[package]
1010
name = "rig"
11-
version = "0.10.0-alpha"
11+
version = "0.10.0-alpha2"
1212
edition = "2021"
1313
authors = ["Gábor Csárdi <csardi.gabor@gmail.com>"]
1414
license = "MIT"

NEWS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# rig 0.10.0-alpha (pre-release)
1+
# rig 0.10.0-alpha2 (pre-release)
22

33
* rig now supports a **user mode** on all platforms, in addition to the
44
default admin mode. In user mode rig installs everything into the user's
@@ -29,7 +29,7 @@
2929

3030
* On Windows, `R CMD config` now works without manually putting Rtools on
3131
the `PATH`. So do `R CMD sh`, `R CMD make` and `rig run --cmd config`.
32-
32+
3333
* On Linux, rig can now install portable R builds, for glibc- and
3434
musl-based Linux distros. If there is no distro-specific build for your
3535
platform, rig falls back to a portable build automatically.

choco/rig/rig.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
33
<metadata>
44
<id>rig</id>
5-
<version>0.10.0-alpha</version>
5+
<version>0.10.0-alpha2</version>
66
<packageSourceUrl>https://github.com/r-lib/rig</packageSourceUrl>
77
<owners>Gábor Csárdi</owners>
88
<title>rig</title>
@@ -80,7 +80,7 @@
8080
Please open an issue in our issue tracker at https://github.com/r-lib/rig/issues
8181
</description>
8282
<releaseNotes>
83-
# rig 0.10.0-alpha
83+
# rig 0.10.0-alpha2
8484

8585
* rig now supports a **user mode** on all platforms, in addition to the
8686
default admin mode. In user mode rig installs everything into the user's

rig.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
33

44
#define MyAppName "rig -- The R Installation Manager"
5-
#define MyAppVersion "0.10.0-alpha"
5+
#define MyAppVersion "0.10.0-alpha2"
66
#define MyAppPublisher "Gabor Csardi"
77
#define MyAppURL "https://github.com/r-lib/rig"
88
#define MyAppExeName "rig.exe"

website/install.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
(or $env:RIG_PREFIX if set).
2121
2222
.PARAMETER Version
23-
Version to install, e.g. 0.10.0. Default: 0.10.0-alpha
23+
Version to install, e.g. 0.10.0. Default: 0.10.0-alpha2
2424
(or $env:RIG_VERSION if set).
2525
2626
.PARAMETER NoModifyPath
@@ -29,7 +29,7 @@
2929
[CmdletBinding()]
3030
param(
3131
[string] $Prefix = $(if ($env:RIG_PREFIX) { $env:RIG_PREFIX } else { "$env:USERPROFILE\.local" }),
32-
[string] $Version = $(if ($env:RIG_VERSION) { $env:RIG_VERSION } else { "0.10.0-alpha" }),
32+
[string] $Version = $(if ($env:RIG_VERSION) { $env:RIG_VERSION } else { "0.10.0-alpha2" }),
3333
[switch] $NoModifyPath
3434
)
3535

website/install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@
1717
# Options (also settable via environment variables):
1818
#
1919
# --prefix=DIR Install prefix (RIG_PREFIX, default $HOME/.local)
20-
# --version=X.Y.Z Version to install (RIG_VERSION, default: 0.10.0-alpha)
20+
# --version=X.Y.Z Version to install (RIG_VERSION, default: 0.10.0-alpha2)
2121
# --no-modify-path Do not edit shell rc files (RIG_NO_MODIFY_PATH=1)
2222
# -h, --help Show this help and exit
2323

2424
set -eu
2525

2626
REPO="r-lib/rig"
2727
PREFIX="${RIG_PREFIX:-$HOME/.local}"
28-
VERSION="${RIG_VERSION:-0.10.0-alpha}"
28+
VERSION="${RIG_VERSION:-0.10.0-alpha2}"
2929
MODIFY_PATH=1
3030
if [ "${RIG_NO_MODIFY_PATH:-0}" != "0" ]; then MODIFY_PATH=0; fi
3131

0 commit comments

Comments
 (0)