Skip to content

Commit dd366f9

Browse files
alexpipipiclaude
andcommitted
chore: bump to v1.0.0, manual release workflow
- Version 1.0.0 (stable, no API changes from 0.2.0) - Release workflow: workflow_dispatch with dry-run option (was tag-triggered) - Removed v0.2.0 tag Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 2f85851 commit dd366f9

5 files changed

Lines changed: 24 additions & 34 deletions

File tree

.github/workflows/release.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
name: Release
22

33
on:
4-
push:
5-
tags:
6-
- 'v*'
4+
workflow_dispatch:
5+
inputs:
6+
dry-run:
7+
description: 'Dry run (skip actual publish)'
8+
type: boolean
9+
default: false
710

811
permissions:
912
contents: read
@@ -23,6 +26,8 @@ jobs:
2326
- run: npm run typecheck
2427
- run: npm run test:unit
2528
- run: npm run build
26-
- run: npm publish --provenance
29+
- name: Publish to npm
30+
if: ${{ !inputs.dry-run }}
31+
run: npm publish --provenance
2732
env:
2833
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## 1.0.0 (2026-03-04)
4+
5+
First stable release. No API changes from 0.2.0.
6+
7+
- Repo cleanup: squashed git history, added CI/CD, docs, templates
8+
- Node.js minimum bumped from 18 to 20 (Node 18 EOL)
9+
- Added: SECURITY.md, CONTRIBUTING.md, CODE_OF_CONDUCT.md, AGENTS.md
10+
- Added: GitHub Actions CI (Node 20/22/24) and manual release workflow
11+
312
## 0.2.0 (2026-03-03)
413

514
### Security

SECURITY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ This policy covers the `eodhd` npm package source code. For vulnerabilities in t
2222

2323
| Version | Supported |
2424
|---------|-----------|
25-
| 0.2.x | Yes |
26-
| < 0.2 | No |
25+
| 1.x | Yes |
26+
| < 1.0 | No |

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eodhd",
3-
"version": "0.2.0",
3+
"version": "1.0.0",
44
"description": "Official Node.js/TypeScript library for EODHD Financial Data APIs",
55
"main": "dist/index.js",
66
"module": "dist/index.mjs",

0 commit comments

Comments
 (0)