Skip to content

Commit 74050da

Browse files
chore(main): release dapp 0.1.0-alpha.1 (#58)
* chore(main): release dapp 0.1.0-alpha.1 * chore: clean up dapp changelog entries --------- Co-authored-by: iexec-release-please-app[bot] <202620906+iexec-release-please-app[bot]@users.noreply.github.com> Co-authored-by: SeddikBellamine <[email protected]>
1 parent b78e210 commit 74050da

File tree

5 files changed

+14
-5
lines changed

5 files changed

+14
-5
lines changed

.github/workflows/dapp-release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,10 @@ jobs:
1414
- name: Extract tag
1515
id: tag
1616
run: |
17-
TAG=${GITHUB_REF#refs/tags/dapp-v}
17+
# Extract version from dapp/package.json using grep and sed
18+
TAG=$(grep '"version"' dapp/package.json | sed 's/.*"version": "\([^"]*\)".*/\1/')
1819
echo "clean_tag=${TAG}" >> $GITHUB_OUTPUT
20+
echo "Extracted version from package.json: ${TAG}"
1921
2022
docker-publish:
2123
uses: iExecBlockchainComputing/github-actions-workflows/.github/workflows/[email protected]

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
".": "0.1.0-alpha.1",
3-
"dapp": "0.1.0-alpha.0"
3+
"dapp": "0.1.0-alpha.1"
44
}

dapp/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [0.1.0-alpha.1](https://github.com/iExecBlockchainComputing/web3telegram-sdk/compare/dapp-v0.1.0-alpha.0...dapp-v0.1.0-alpha.1) (2025-07-28)
6+
7+
### Changed
8+
9+
- add .js extensions to ES module imports ([#56](https://github.com/iExecBlockchainComputing/web3telegram-sdk/issues/56)) ([0a63891](https://github.com/iExecBlockchainComputing/web3telegram-sdk/commit/0a638918b08e7c2f9f62bf155609f267d39e3ba5))
10+
- rollback debug logging changes from develop branch ([404ce33](https://github.com/iExecBlockchainComputing/web3telegram-sdk/commit/404ce33e7d0705c274155813951284cd1830a3d2))
11+
512
## [0.0.2-alpha] - 2025-03-10
613

714
### Changed

dapp/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dapp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dapp",
3-
"version": "0.1.0-alpha.0",
3+
"version": "0.1.0-alpha.1",
44
"main": "index.js",
55
"type": "module",
66
"engines": {

0 commit comments

Comments
 (0)