Skip to content

Commit 4e6c263

Browse files
committed
feat: update to v0.3.2
1 parent 3ae695e commit 4e6c263

6 files changed

Lines changed: 17 additions & 8 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
@@ -1,6 +1,6 @@
11
[package]
22
name = "ckan-devstaller"
3-
version = "0.3.0"
3+
version = "0.3.2"
44
edition = "2024"
55

66
[dependencies]

docs/components/builder.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ sudo apt install curl -y
3434
cd ~/
3535
3636
# Download the ckan-devstaller binary file
37-
wget https://github.com/dathere/ckan-devstaller/releases/download/0.3.1/ckan-devstaller
37+
wget https://github.com/dathere/ckan-devstaller/releases/download/0.3.2/ckan-devstaller
3838
3939
# Add execute permission to ckan-devstaller binary file
4040
sudo chmod +x ./ckan-devstaller\n\n# Run ckan-devstaller script\n`;
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: Changelog for ckan-devstaller v0.3.2 (2026-02-20)
3+
---
4+
5+
## Pin setuptools and update pip install URLs
6+
7+
The `egg=<pkg>` URL fragment `pip install` method has been deprecated and we have updated the installation URLs as per https://github.com/pypa/pip/issues/13157.
8+
9+
We have also pinned `setuptools` to version `81.0.0` for now as "setuptools 82... prevents CKAN to start" as per https://github.com/ckan/ckan/issues/9246.

docs/content/docs/index.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,13 @@ import { Step, Steps } from 'fumadocs-ui/components/steps';
4545
By running the following script, ckan-devstaller will be downloaded and the default configuration for installing CKAN with ckan-compose will be selected. You can then customize your configuration interactively in your terminal after running this script.
4646

4747
```bash
48-
wget -O - https://github.com/dathere/ckan-devstaller/releases/download/0.3.1/install.bash | bash
48+
wget -O - https://github.com/dathere/ckan-devstaller/releases/download/0.3.2/install.bash | bash
4949
```
5050

5151
If you'd rather skip the interactivity and go straight to installation, then run the following script instead:
5252

5353
```bash
54-
wget -O - https://github.com/dathere/ckan-devstaller/releases/download/0.3.1/install.bash | bash -s skip-interactive
54+
wget -O - https://github.com/dathere/ckan-devstaller/releases/download/0.3.2/install.bash | bash -s skip-interactive
5555
```
5656

5757
</Step>
@@ -73,13 +73,13 @@ The following script will download ckan-devstaller and select the following conf
7373
You can then customize your configuration interactively in your terminal after running this script.
7474

7575
```bash
76-
wget -O - https://github.com/dathere/ckan-devstaller/releases/download/0.3.1/install.bash | bash -s dathere-default
76+
wget -O - https://github.com/dathere/ckan-devstaller/releases/download/0.3.2/install.bash | bash -s dathere-default
7777
```
7878

7979
If you'd rather skip the interactivity and go straight to installation, then run the following script instead:
8080

8181
```bash
82-
wget -O - https://github.com/dathere/ckan-devstaller/releases/download/0.3.1/install.bash | bash -s dathere-default skip-interactive
82+
wget -O - https://github.com/dathere/ckan-devstaller/releases/download/0.3.2/install.bash | bash -s dathere-default skip-interactive
8383
```
8484

8585
</Step>

install.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ sudo apt install curl -y
1111
cd ~/
1212

1313
# Download the ckan-devstaller binary file
14-
curl -LO https://github.com/dathere/ckan-devstaller/releases/download/0.3.1/ckan-devstaller
14+
curl -LO https://github.com/dathere/ckan-devstaller/releases/download/0.3.2/ckan-devstaller
1515

1616
# Add execute permission to ckan-devstaller binary file
1717
sudo chmod +x ./ckan-devstaller

0 commit comments

Comments
 (0)