Skip to content

Commit 701522e

Browse files
authored
release viash website for the 0.9.7 release (#123)
* release viash website for the 0.9.7 release * fix typo in blog post, fix in viash is in a PR there too
1 parent a3103dc commit 701522e

7 files changed

Lines changed: 55 additions & 9 deletions

File tree

_src/create_versioned_tarball.sh

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
#!/bin/bash
2+
3+
# Create a tar.xz archive of _site, excluding versions.js and versions.json,
4+
# and store it as _versioned/new.tar.xz.
5+
6+
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
7+
REPO_ROOT="$(dirname "$SCRIPT_DIR")"
8+
9+
SITE_DIR="$REPO_ROOT/_site"
10+
OUTPUT="$REPO_ROOT/_versioned/new.tar.xz"
11+
12+
mkdir -p "$(dirname "$OUTPUT")"
13+
14+
tar \
15+
--create \
16+
--xz \
17+
--file "$OUTPUT" \
18+
--exclude="versions.js" \
19+
--exclude="versions.json" \
20+
--exclude="_versioned" \
21+
--directory "$SITE_DIR" \
22+
.
23+
24+
echo "Created $OUTPUT"

_src/render_pages.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
#!/bin/bash
22

3+
source renv/python/virtualenvs/renv-python-3.13/bin/activate
4+
export PYTHONPATH="$(pwd)/renv/python/virtualenvs/renv-python-3.13/lib/python3.13/site-packages:${PYTHONPATH}"
35

46
echo "Creating blog posts"
57
viash run _src/automation/generate_version_blog_pages/config.vsh.yaml -- \
68
--input ../viash/CHANGELOG.md \
79
--output blog/posts
810

9-
source renv/python/virtualenvs/renv-python-3.10/bin/activate
10-
1111
echo "Removing reference subfolders but leaving top level files in place"
1212
rm -rf ./reference/*/
1313

_src/version_copy.sh

Lines changed: 0 additions & 5 deletions
This file was deleted.

_versioned/0.9.6.tar.xz

1.23 MB
Binary file not shown.

_viash.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
viash_version: 0.9.4
1+
viash_version: 0.9.7
22

33
source: _src
44
target: _target

blog/posts/viash-0.9.7/index.qmd

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
title: "Viash 0.9.7"
3+
subtitle: "Bug fix release"
4+
date: "2026-03-03"
5+
categories: [ New Release ]
6+
author: Viash Team
7+
---
8+
9+
## What's new?
10+
11+
Fix a few issues with how Viash interacts with Nextflow and fix an issue with dependency resolving.
12+
13+
## Full changelog
14+
15+
### BUG FIXES
16+
17+
* `NextflowRunner`: Fix `readCsv` failing on S3 paths with Nextflow 25.10.x (PR #864). The `BufferedReader.ready()` method returns false for S3 streams when no data is pre-buffered, which broke compatibility with AWS SDK v2 used in Nextflow 25.10.x.
18+
19+
* `Nextflowrunner`: fix publishing of directories when the output file name template contains a trailing slash (PR #867).
20+
21+
* `Logging`: Reduce log level for fetching repositories from info to debug (PR #871).
22+
23+
* `Dependencies`: Fix an edge case during dependency resolving (PR #870). Local dependencies of dependencies of local dependencies were resolved incorrectly and resulted in a wrongly resolved destination path.
24+

versions.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
{
2-
"latest": "0.9.6",
2+
"latest": "0.9.7",
33
"versions": [
4+
{
5+
"version": "0.9.7"
6+
},
47
{
58
"version": "0.9.6"
69
},

0 commit comments

Comments
 (0)