@nexttylabs/echo 0.2.0 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @nexttylabs/echo
2
2
 
3
+ ## 0.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 5cfdeb7: feat: support editing user profile
8
+
9
+ ### Patch Changes
10
+
11
+ - 7dba561: remove legacy changeset files
12
+ - e3c4e1c: fix workflow errors
13
+ - daf9abb: first release
14
+
3
15
  ## 0.2.0
4
16
 
5
17
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "@nexttylabs/echo",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
4
+ "license": "AGPL-3.0",
4
5
  "private": false,
5
6
  "publishConfig": {
6
7
  "access": "public"
package/vercel.json ADDED
@@ -0,0 +1,4 @@
1
+ {
2
+ "installCommand": "bun install",
3
+ "buildCommand": "bun run db:migrate && bun run build"
4
+ }