From e8c36311739c76a83690e731fe810375e26bc31c Mon Sep 17 00:00:00 2001 From: davelopez <46503462+davelopez@users.noreply.github.com> Date: Sun, 1 Oct 2023 12:44:00 +0200 Subject: [PATCH 1/5] Rename default branch name in CI workflow --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 157925e..9ba735e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -3,7 +3,7 @@ name: CI on: push: pull_request: - branches: [master] + branches: [main] workflow_dispatch: jobs: From 46b85366015f490493198803a59d50444619398e Mon Sep 17 00:00:00 2001 From: davelopez <46503462+davelopez@users.noreply.github.com> Date: Sun, 1 Oct 2023 12:44:58 +0200 Subject: [PATCH 2/5] Match vscode engine version with @types/vscode --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 9d9923a..281b15c 100644 --- a/package.json +++ b/package.json @@ -29,7 +29,7 @@ }, "icon": "assets/galaxy-logo-icon.png", "engines": { - "vscode": "^1.66.0" + "vscode": "^1.81.0" }, "categories": [ "Linters", From d84adaa1eb50cc7746ca3bfaeec6b6f168101d9d Mon Sep 17 00:00:00 2001 From: davelopez <46503462+davelopez@users.noreply.github.com> Date: Sun, 1 Oct 2023 12:47:03 +0200 Subject: [PATCH 3/5] Remove redundant activation events Recent versions of VSCode infer this information from the contribution declarations. --- package.json | 4 ---- 1 file changed, 4 deletions(-) diff --git a/package.json b/package.json index 281b15c..af2611e 100644 --- a/package.json +++ b/package.json @@ -39,10 +39,6 @@ ], "main": "./client/dist/extension", "browser": "./client/dist/web/extension", - "activationEvents": [ - "onLanguage:gxformat2", - "onLanguage:galaxyworkflow" - ], "contributes": { "languages": [ { From 53bd1598b5ae4a0a882137df8eb8e24ca2c37029 Mon Sep 17 00:00:00 2001 From: davelopez <46503462+davelopez@users.noreply.github.com> Date: Sun, 1 Oct 2023 13:14:35 +0200 Subject: [PATCH 4/5] Update changelog --- CHANGELOG.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 38ede6f..46a8d3f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [0.3.1] - 2023-10-01 + +### Changed + +- Only workflow files with the extension `.gxwf.yml` will be considered Galaxy Workflows in VSCode [#61](https://github.com/davelopez/galaxy-workflows-vscode/pull/61) + +### Removed + +- Temporarily disable clean diff comparisons in Timeline [#59](https://github.com/davelopez/galaxy-workflows-vscode/pull/59) + ## [0.3.0] - 2022-10-15 ### Added From 5d672729a213fd3adee458571204e5f7779bd5da Mon Sep 17 00:00:00 2001 From: davelopez <46503462+davelopez@users.noreply.github.com> Date: Sun, 1 Oct 2023 13:15:15 +0200 Subject: [PATCH 5/5] Set version to v0.3.1 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index af2611e..e9ab821 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "galaxy-workflows", "displayName": "Galaxy Workflows", "description": "Utilities to assist in the edition of Galaxy (https://galaxyproject.org/) Workflow files.", - "version": "0.3.0", + "version": "0.3.1", "preview": true, "license": "MIT", "publisher": "davelopez",