Skip to content

Commit 3e41336

Browse files
sdankelJoshuaBatty
andauthored
Remove support for beta-1 beta-2 and beta-3 (#126)
These toolchains are pretty much nonfunctional as there is no client endpoint anymore, and there’s no reason for anyone to use these. --------- Co-authored-by: Joshua Batty <[email protected]>
1 parent 5f6b7b8 commit 3e41336

File tree

8 files changed

+10
-40
lines changed

8 files changed

+10
-40
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ jobs:
3131
package:
3232
[
3333
fuel,
34-
fuel-beta-3,
3534
fuel-beta-4,
3635
fuel-beta-5,
3736
fuel-nightly,

.github/workflows/refresh-manifests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
strategy:
3737
fail-fast: false
3838
matrix:
39-
package: [fuel, fuel-beta-1, fuel-beta-2, fuel-beta-3, fuel-beta-4, fuel-beta-5, fuel-nightly]
39+
package: [fuel, fuel-beta-4, fuel-beta-5, fuel-nightly]
4040
os: [ubuntu-latest, macos-latest, macos-latest-xlarge]
4141
runs-on: ${{ matrix.os }}
4242
steps:

book/src/contributing/internals.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ At a very high level, **fuel.nix** does the following:
1111
provide package **sets** for the latest semver releases and nightlies e.g.
1212
(`fuel-latest`, `fuel-nightly`).
1313
3. [**Provide a special set of "milestone" packages**](./internals/providing-milestones.html)
14-
(e.g. `forc-wallet-beta-2`) and package sets (e.g. `fuel-beta-3`) by finding
14+
(e.g. `forc-wallet-beta-5`) and package sets (e.g. `fuel-beta-5`) by finding
1515
packages that match the commits specified in `milestones.nix`.
1616
4. **Provide `devShell`s** to assist working on the fuel repos by collecting all
1717
of the inputs to their associated packages and inheriting their environment

book/src/contributing/internals/providing-milestones.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55
Milestones provide a way of pinning a significant set of hand-picked commits
66
across the Fuel ecosystem under a single named release.
77

8-
Milestones are provided by the `./milestones.nix` file. As of writing this,
9-
the file includes milestones for `beta-1`, `beta-2` and `beta-3`.
8+
Milestones are provided by the `./milestones.nix` file.
109

1110
Each milestone is a mapping from a name to a set of repository commits, each of
1211
which is used to select the set of package manifests used to generate package

book/src/packages.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ nix run github:fuellabs/fuel.nix#forc-nightly
3737
Similarly, run the version of a package from a milestone with `-<milestone>`, e.g.
3838

3939
```
40-
nix run github:fuellabs/fuel.nix#forc-lsp-beta-3
40+
nix run github:fuellabs/fuel.nix#forc-lsp-beta-5
4141
```
4242
```
43-
nix run github:fuellabs/fuel.nix#forc-wallet-beta-1
43+
nix run github:fuellabs/fuel.nix#forc-wallet-beta-5
4444
```
4545

4646
## Temporary Shells
@@ -76,9 +76,9 @@ $ exit
7676

7777
# No fuel packages on `PATH`
7878

79-
$ nix shell github:fuellabs/fuel.nix#fuel-beta-3
79+
$ nix shell github:fuellabs/fuel.nix#fuel-beta-5
8080

81-
# All beta-3 milestone `fuel` packages on `PATH`.
81+
# All beta-5 milestone `fuel` packages on `PATH`.
8282
```
8383

8484
## Installing Packages

book/src/quick-start.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ were never installed.
5959
## Diving Deeper
6060
6161
To find out how to install tools persistently for the current user, how to
62-
install different toolchain channels (nightly, beta-3, etc), how to install
62+
install different toolchain channels (nightly, beta-5, etc), how to install
6363
individual components, along with a whole suite of other options, see [**the
6464
Packages chapter**](./packages.html).
6565

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
nightly = pkgs.lib.mapAttrs' mapNightly foldNightly;
100100
};
101101

102-
# Construct the milestone package lists, e.g. `{ beta-1 = [...]; beta-2 = [...]; }`.
102+
# Construct the milestone package lists, e.g. `{ beta-4 = [...]; beta-5 = [...]; }`.
103103
milestones = let
104104
filterPkg = revs: m: builtins.any (rev: rev == m.src.rev) (builtins.attrValues revs);
105105
filterPublished = revs: builtins.filter (filterPkg revs) published.prepared;

milestones.nix

Lines changed: 1 addition & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,7 @@
11
# A map from repo name to git commit hash for each release milestone.
22
# Allows for referencing packages or package sets by milestone, e.g.
3-
# `forc-beta-2`, `fuel-core-beta-1`, `fuel-beta-2`, etc.
3+
# `forc-beta-4`, `fuel-core-beta-5`, etc.
44
{
5-
# Commits sourced from:
6-
# https://raw.githubusercontent.com/FuelLabs/fuelup/gh-pages/channel-fuel-beta-1.toml
7-
beta-1 = {
8-
forc-wallet = "9473052e88048f58e8c4e1eba0ff88ef6a4cdd59";
9-
fuel-core = "a0351c241754f670470cbf0aa5bb743582b038d1";
10-
sway = "e7674f704f2706e22f77c0ed32df9c89302e5e7e";
11-
};
12-
13-
# Commits sourced from:
14-
# https://raw.githubusercontent.com/FuelLabs/fuelup/gh-pages/channel-fuel-beta-2.toml
15-
beta-2 = {
16-
forc-explorer = "4bb7392eed085ee3a6795b98ea25392b3f41ade8";
17-
forc-wallet = "9473052e88048f58e8c4e1eba0ff88ef6a4cdd59";
18-
fuel-core = "49e4305fea691bbf293c606334e7b282a54393b3";
19-
fuel-indexer = "c2425c8b63f01ef1b540ff3e5832ebdc018b951d";
20-
sway = "c32b0759d25c0b515cbf535f9fb9b8e6fda38ff2";
21-
};
22-
23-
# Commits sourced from:
24-
# https://raw.githubusercontent.com/FuelLabs/fuelup/gh-pages/channel-fuel-beta-3.toml
25-
beta-3 = {
26-
forc-explorer = "4bb7392eed085ee3a6795b98ea25392b3f41ade8";
27-
forc-wallet = "c0a69f05e48031632b58e1b69eebb1ea19b6dd2d";
28-
fuel-core = "843ed0b5008acbb7934ae92a1e9ae1368f2b5157";
29-
fuel-indexer = "a72e66da03e530976c34e94c4b35ae588fac1d6d";
30-
sway = "5d2b10bd83791d2eaff04206dbd45bfdd9cf23ff";
31-
};
32-
335
# Commits sourced from:
346
# https://raw.githubusercontent.com/FuelLabs/fuelup/gh-pages/channel-fuel-beta-4.toml
357
beta-4 = {

0 commit comments

Comments
 (0)