Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: bump versions #234

Merged
merged 2 commits into from
Sep 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,30 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## Unreleased


## 2023-09-12 v0.11.0
- feat: show avatar in lightbox upon clicking profile (#233)
- refactor: manage dialogs via stores, reduce duplicate components (#232)
- fix: ensure notifications count only grows over time (#231)
- fix: reactivity of profile popup data (#230)
- fix: show create profile form upon clicking 'pin mew' button without a profile (#228)
- fix: avoid excessive "profile not found" errors (#225)
- build: replace new-port-cli with fork avoiding rust clap validation issue (#224)
- feat: only notify agent of responses to mews they responded to if those responses are created after their own (#221)
- feat: avoid duplicate notifications for both 'responded to your mew' and 'responded to a mew you responded to' when agent both created the mew & responded to it (#221)
- fix: infinite scroll of followers / creators lists (#220)
- feat: display confirmation dialog before creating a mewmew (#219)
- feat: focus on input fields upon opening dialogs (#216)
- fix: reduce noise of toast errors from failed zome calls when fetching data, only display toast errors when active user actions fail (#204)
- fix: remove typo dot (#203)
- feat: add tooltips to site menu (#202)
- chore: delete unused signals code (#201, #200)
- fix: reactively update pinned mews & authored mews upon mew deletion (#199)
- style: add padding around agent profiles in followers / creators lists (#198)
- fix: use count_links for followers /creators counts (#197)
- style: wrap toast message text, shrink font size, increase display time (#196)
- fix: explore shuffle profiles reactivity (#175)
- fix: explore page mis-matched tags (#175)

## 2023-02-26 v0.10.0-rc.1

### Added
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dnas/mewsfeed/zomes/coordinator/mews/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mews"
version = "0.0.1"
version = "0.1.0"
edition = "2021"

[lib]
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "mewsfeed",
"private": true,
"version": "0.10.0-rc.1",
"version": "0.11.0",
"workspaces": [
"ui",
"tests"
Expand Down
1 change: 0 additions & 1 deletion ui/components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ declare module 'vue' {
CreateMewInput: typeof import('./src/components/CreateMewInput.vue')['default']
CreateProfileIfNotFoundDialog: typeof import('./src/components/CreateProfileIfNotFoundDialog.vue')['default']
CreatorsListDialog: typeof import('./src/components/CreatorsListDialog.vue')['default']
Dialogs: typeof import('./src/components/Dialogs.vue')['default']
EditAgentProfileDialog: typeof import('./src/components/EditAgentProfileDialog.vue')['default']
FollowersListDialog: typeof import('./src/components/FollowersListDialog.vue')['default']
RandomMewWithTagList: typeof import('./src/components/RandomMewWithTagList.vue')['default']
Expand Down
2 changes: 1 addition & 1 deletion ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "mewsfeed-ui-vue",
"description": "A UI for MewsFeed based on Vue",
"author": "Jost Schulte",
"version": "0.9.0-alpha",
"version": "0.11.0",
"type": "module",
"scripts": {
"start": "vite --port $UI_PORT --clearScreen false",
Expand Down
Loading