diff --git a/changelog.md b/changelog.md index f46e63c..129ec4d 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # Changelog +## 2024-12-13 - 1.3.0 - feat(core) +Export CommitResult interface for external use. + +- Changed CommitResult from a local interface to an exported interface, allowing for external usage and integration. + ## 2024-12-13 - 1.2.1 - fix(core) No changes detected diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index abab6b4..77e28c4 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@foss.global/codefeed', - version: '1.2.1', + version: '1.3.0', description: 'a module for creating feeds for code development' } diff --git a/ts/index.ts b/ts/index.ts index 81b1689..51d8bfc 100644 --- a/ts/index.ts +++ b/ts/index.ts @@ -33,7 +33,7 @@ interface RepoSearchResponse { data: Repository[]; } -interface CommitResult { +export interface CommitResult { baseUrl: string; org: string; repo: string;