Skip to content

Commit 14bcae2

Browse files
authored
ci: Fix auto-release (#1083)
1 parent 7ba29db commit 14bcae2

File tree

4 files changed

+13
-11
lines changed

4 files changed

+13
-11
lines changed

packages/flutter/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# [10.3.0](https://github.com/parse-community/Parse-SDK-Flutter/compare/flutter-10.2.0...flutter-10.3.0) (2025-11-30)
2+
3+
4+
### Features
5+
6+
* Bump package_info_plus from 5.0.1 to 9.0.0 in /packages/flutter ([#1060](https://github.com/parse-community/Parse-SDK-Flutter/issues/1060)) ([2b3e63c](https://github.com/parse-community/Parse-SDK-Flutter/commit/2b3e63cdb5ddb3b5de5dfb830db8c72ccfffdb84))
7+
8+
19
# [10.2.0](https://github.com/parse-community/Parse-SDK-Flutter/compare/flutter-10.1.0...flutter-10.2.0) (2025-11-29)
210

311

packages/flutter/packages/flutter/CHANGELOG.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

packages/flutter/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: parse_server_sdk_flutter
22
description: The Flutter SDK to connect to Parse Server. Build your apps faster with Parse Platform, the complete application stack.
3-
version: 10.2.0
3+
version: 10.3.0
44
homepage: https://parseplatform.org
55
repository: https://github.com/parse-community/Parse-SDK-Flutter
66
issue_tracker: https://github.com/parse-community/Parse-SDK-Flutter/issues

release.config.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ async function config() {
3535
// Set changelog file based on package
3636
const changelogFile = packageName === 'root'
3737
? `./CHANGELOG.md`
38-
: `./packages/${packageName}/CHANGELOG.md`;
38+
: `./CHANGELOG.md`;
3939
console.log(`Changelog file output to: ${changelogFile}`);
4040

4141
// Load template file contents
@@ -51,9 +51,9 @@ async function config() {
5151
? [changelogFile, 'package.json', 'package-lock.json']
5252
: [
5353
changelogFile,
54-
`packages/${packageName}/pubspec.yaml`,
55-
'package.json',
56-
'package-lock.json'
54+
'pubspec.yaml',
55+
'../../package.json',
56+
'../../package-lock.json'
5757
];
5858

5959
const config = {

0 commit comments

Comments
 (0)