Skip to content

Commit

Permalink
chore(release): publish packages
Browse files Browse the repository at this point in the history
  • Loading branch information
johannesvedder committed Dec 19, 2023
1 parent 9ce9a9a commit 7e71195
Show file tree
Hide file tree
Showing 7 changed files with 58 additions and 5 deletions.
37 changes: 37 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,43 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 2023-12-19

### Changes

---

Packages with breaking changes:

- There are no breaking changes in this release.

Packages with other changes:

- [`studyu_app` - `v2.6.5-dev.0`](#studyu_app---v265-dev0)
- [`studyu_flutter_common` - `v1.7.0-dev.0`](#studyu_flutter_common---v170-dev0)
- [`studyu_designer_v2` - `v1.6.2-dev.0`](#studyu_designer_v2---v162-dev0)

Packages with dependency updates only:

> Packages listed below depend on other packages in this workspace that have had changes. Their versions have been incremented to bump the minimum dependency versions of the packages they depend upon in this project.

- `studyu_designer_v2` - `v1.6.2-dev.0`

---

#### `studyu_app` - `v2.6.5-dev.0`

- **FIX**: refresh dashboard on app resume. ([9bcd0e51](https://github.com/hpi-studyu/studyu/commit/9bcd0e5159d80e1f4cd4948f0ee8956705cd8c38))
- **FIX**: add required manifest entries for notifications to work again. ([5c8e4bbe](https://github.com/hpi-studyu/studyu/commit/5c8e4bbe42e6e5d93ee0f20a5732d8f28324df1a))

#### `studyu_flutter_common` - `v1.7.0-dev.0`

- **FIX**: do not rely on hardcoded authcallback. ([e6787fb7](https://github.com/hpi-studyu/studyu/commit/e6787fb7027b50181441bec0a6ee5a47eec1146d))
- **FIX**(cli): debug command line arguments. ([e16f5e49](https://github.com/hpi-studyu/studyu/commit/e16f5e4954ce3247073b31479e8b28f0ff1693df))
- **FIX**: Use default env urls again. ([ac3c3981](https://github.com/hpi-studyu/studyu/commit/ac3c39819ff23faa99a6812e88700d29184bb9f4))
- **FEAT**(docker): Introduce advanced cli functionality. ([a1c749aa](https://github.com/hpi-studyu/studyu/commit/a1c749aa6241d4b3521e53462db116a96c0bf246))


## 2023-11-14

### Changes
Expand Down
5 changes: 5 additions & 0 deletions app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 2.6.5-dev.0

- **FIX**: refresh dashboard on app resume. ([9bcd0e51](https://github.com/hpi-studyu/studyu/commit/9bcd0e5159d80e1f4cd4948f0ee8956705cd8c38))
- **FIX**: add required manifest entries for notifications to work again. ([5c8e4bbe](https://github.com/hpi-studyu/studyu/commit/5c8e4bbe42e6e5d93ee0f20a5732d8f28324df1a))

## 2.6.4

- **FIX**: upgrade deps. ([f37d0a71](https://github.com/hpi-studyu/studyu/commit/f37d0a711ab9a126b7da13b7eb4fbb9b784f3725))
Expand Down
4 changes: 2 additions & 2 deletions app/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: studyu_app
version: 2.6.4
version: 2.6.5-dev.0
description: Partake in digital N-of-1 trials with the innovative StudyU App
publish_to: none
homepage: https://studyu.health
Expand Down Expand Up @@ -35,7 +35,7 @@ dependencies:
sentry_logging: ^7.13.2
shared_preferences: ^2.2.2
studyu_core: ^4.3.2
studyu_flutter_common: ^1.6.4
studyu_flutter_common: ^1.7.0-dev.0
supabase: ^1.11.11
supabase_flutter: ^1.10.25
timeline_tile: ^2.0.0
Expand Down
4 changes: 4 additions & 0 deletions designer_v2/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.6.2-dev.0

- Update a dependency to the latest release.

## 1.6.1

- **FIX**: upgrade deps. ([f37d0a71](https://github.com/hpi-studyu/studyu/commit/f37d0a711ab9a126b7da13b7eb4fbb9b784f3725))
Expand Down
4 changes: 2 additions & 2 deletions designer_v2/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: studyu_designer_v2
version: 1.6.1
version: 1.6.2-dev.0
description: Implement digital N-of-1 studies seamlessly with the brand new StudyU Designer
publish_to: none
homepage: https://studyu.health
Expand Down Expand Up @@ -33,7 +33,7 @@ dependencies:
rxdart: ^0.27.7
shared_preferences: ^2.2.2
studyu_core: ^4.3.2
studyu_flutter_common: ^1.6.4
studyu_flutter_common: ^1.7.0-dev.0
supabase: ^1.11.11
supabase_flutter: ^1.10.25
url_launcher: ^6.2.1
Expand Down
7 changes: 7 additions & 0 deletions flutter_common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 1.7.0-dev.0

- **FIX**: do not rely on hardcoded authcallback. ([e6787fb7](https://github.com/hpi-studyu/studyu/commit/e6787fb7027b50181441bec0a6ee5a47eec1146d))
- **FIX**(cli): debug command line arguments. ([e16f5e49](https://github.com/hpi-studyu/studyu/commit/e16f5e4954ce3247073b31479e8b28f0ff1693df))
- **FIX**: Use default env urls again. ([ac3c3981](https://github.com/hpi-studyu/studyu/commit/ac3c39819ff23faa99a6812e88700d29184bb9f4))
- **FEAT**(docker): Introduce advanced cli functionality. ([a1c749aa](https://github.com/hpi-studyu/studyu/commit/a1c749aa6241d4b3521e53462db116a96c0bf246))

## 1.6.4

- **FIX**: upgrade deps. ([f37d0a71](https://github.com/hpi-studyu/studyu/commit/f37d0a711ab9a126b7da13b7eb4fbb9b784f3725))
Expand Down
2 changes: 1 addition & 1 deletion flutter_common/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: studyu_flutter_common
version: 1.6.4
version: 1.7.0-dev.0
description: StudyU common flutter components and functions for app and designer
homepage: https://studyu.health
repository: https://github.com/hpi-studyu/studyu
Expand Down

0 comments on commit 7e71195

Please sign in to comment.