Skip to content

Commit

Permalink
Merge branch 'main' into 1326-support-ldname-attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
Stef3st authored Jan 11, 2024
2 parents 0f11a39 + 28f0260 commit c8e0ad5
Show file tree
Hide file tree
Showing 7 changed files with 45 additions and 15 deletions.
21 changes: 11 additions & 10 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,33 +2,34 @@ on:
push:
branches:
- main


permissions:
contents: write
pull-requests: write

name: release-please
jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
- uses: google-github-actions/release-please-action@v4
id: release
with:
command: manifest
token: ${{ secrets.GITHUB_TOKEN }}
# The logic below handles the npm publication:
- uses: actions/checkout@v2
if: ${{ steps.release.outputs.release_created }}
if: ${{ steps.release.outputs.releases_created }}
- uses: actions/setup-node@v1
with:
node-version: 18
registry-url: 'https://registry.npmjs.org'
if: ${{ steps.release.outputs.release_created }}
if: ${{ steps.release.outputs.releases_created }}
- run: npm ci
if: ${{ steps.release.outputs.release_created }}
if: ${{ steps.release.outputs.releases_created }}
- run: cd packages/core && npm run build
if: ${{ steps.release.outputs.release_created }}
if: ${{ steps.release.outputs.releases_created }}
- run: cd packages/core && npm publish --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
if: ${{ steps.release.outputs.release_created }}
- run: |
git config user.name "GitHubActions"
git config user.email "<[email protected]>"
if: ${{ steps.release.outputs.releases_created }}
4 changes: 2 additions & 2 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"packages/open-scd": "0.33.1",
"packages/core": "0.1.0"
"packages/open-scd": "0.34.0",
"packages/core": "0.1.1"
}
7 changes: 7 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.1.1](https://github.com/openscd/open-scd/compare/[email protected]) (2024-01-11)


### 📦 Miscellaneous Chores

* Update README.md ([#1409](https://github.com/openscd/open-scd/issues/1409)) ([fedb6c7](https://github.com/openscd/open-scd/commit/fedb6c7c20392aed352292f4951fb29ce7a3aed4))

## [1.0.1](https://github.com/openscd/open-scd-core/compare/v1.0.0...v1.0.1) (2023-05-30)


Expand Down
2 changes: 1 addition & 1 deletion packages/core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ npm i open-scd

```html
<script type="module">
import 'open-scd/open-scd.js';
import '@openscd/core';
</script>

<open-scd></open-scd>
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openscd/core",
"version": "1.0.1",
"version": "0.1.1",
"description": "The core editor component of open-scd, without any extensions pre-installed.",
"author": "Open-SCD",
"license": "Apache-2.0",
Expand Down
22 changes: 22 additions & 0 deletions packages/open-scd/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,28 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [0.34.0](https://github.com/openscd/open-scd/compare/[email protected]) (2024-01-10)


### ✨ Features

* **104:** added descriptions to control ti numbers ([#1400](https://github.com/openscd/open-scd/issues/1400)) ([758a3b8](https://github.com/openscd/open-scd/commit/758a3b887b75b1eabdda7add0b3abf4cbe2df949))
* **104:** added descriptions to ti numbers ([#1378](https://github.com/openscd/open-scd/issues/1378)) ([0e74294](https://github.com/openscd/open-scd/commit/0e742944e4e834c515488ad1f75cecf88d234a8a))
* added acd as a supported cdc type ([#1371](https://github.com/openscd/open-scd/issues/1371)) ([5ee353c](https://github.com/openscd/open-scd/commit/5ee353cf85e61ce9edd6f48268d198adfdc3f0b2))
* added acd as a supported ens type ([#1384](https://github.com/openscd/open-scd/issues/1384)) ([cebcd37](https://github.com/openscd/open-scd/commit/cebcd37ecbc0230561018c4bb2a8c5e58de3b807))


### 🐞 Bug Fixes

* **104:** change options between different tis when selecting a doi ([#1380](https://github.com/openscd/open-scd/issues/1380)) ([cb80080](https://github.com/openscd/open-scd/commit/cb800808e9679e673e987038678e4c9f2da9fdf3))


### 📦 Miscellaneous Chores

* **104:** validate IOA number in address-wizard ([#1370](https://github.com/openscd/open-scd/issues/1370)) ([dff67ba](https://github.com/openscd/open-scd/commit/dff67ba53eb740f912f51dbae21d83a41e1c3332))
* add await in front of snapshot comparison ([#1395](https://github.com/openscd/open-scd/issues/1395)) ([7edd551](https://github.com/openscd/open-scd/commit/7edd55197e611ef7d2e7a333eea1bda30bd04cc0))
* Added additional properties ([#1369](https://github.com/openscd/open-scd/issues/1369)) ([754c301](https://github.com/openscd/open-scd/commit/754c3019a71b8c23a4fc166bfa557d6405d892e2))

## [0.33.0](https://github.com/openscd/open-scd/compare/v0.32.0...v0.33.0) (2023-06-22)


Expand Down
2 changes: 1 addition & 1 deletion packages/open-scd/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "open-scd",
"version": "0.33.0",
"version": "0.34.0",
"repository": "https://github.com/openscd/open-scd.git",
"directory": "packages/open-scd",
"description": "A bottom-up substation configuration designer for projects described using SCL `IEC 61850-6` Edition 2 or greater.",
Expand Down

0 comments on commit c8e0ad5

Please sign in to comment.