Unverified Commit d006da6c authored by Hong Minhee's avatar Hong Minhee
Browse files

Version bump

[ci skip]
parent eb16b11d
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -3,6 +3,12 @@
Fedify changelog
================

Version 0.13.0
--------------

To be released.


Version 0.12.0
--------------

+1 −1
Original line number Diff line number Diff line
{
  "name": "@fedify/cli",
  "version": "0.12.0",
  "version": "0.13.0",
  "exports": "./mod.ts",
  "importMap": "import_map.g.json",
  "compilerOptions": {
+1 −1
Original line number Diff line number Diff line
@@ -125,7 +125,7 @@ Fedify is an ESM-only package, so you need to add `"type": "module"` to the
{
  "type": "module",
  "dependencies": {
    "@fedify/fedify": "^0.12.0"
    "@fedify/fedify": "^0.13.0"
  }
}
~~~~
+5 −6
Original line number Diff line number Diff line
@@ -60,7 +60,7 @@ deno add @fedify/fedify
mkdir follow-server
cd follow-server/
echo '{ "type": "module" }' > package.json
bun add @deno/kv @fedify/fedify
bun add @fedify/fedify
~~~~

~~~~ sh [Node.js]
@@ -68,7 +68,7 @@ mkdir follow-server
cd follow-server/
echo '{ "type": "module" }' > package.json
npm add -D typescript tsx @types/node
npm add @deno/kv @fedify/fedify @hono/node-server
npm add @fedify/fedify @hono/node-server
~~~~

:::
@@ -83,7 +83,7 @@ The above commands will create a *deno.json* (in case of Deno) or *package.json*
{
  "unstable": ["kv", "temporal"],
  "imports": {
    "@fedify/fedify": "jsr:@fedify/fedify@^0.12.0"
    "@fedify/fedify": "jsr:@fedify/fedify@^0.13.0"
  }
}
~~~~
@@ -92,8 +92,7 @@ The above commands will create a *deno.json* (in case of Deno) or *package.json*
{
  "type": "module",
  "dependencies": {
    "@deno/kv": "^0.8.0",
    "@fedify/fedify": "^0.12.0"
    "@fedify/fedify": "^0.13.0"
  }
}
~~~
@@ -107,7 +106,7 @@ The above commands will create a *deno.json* (in case of Deno) or *package.json*
    "typescript": "^5.4.5"
  },
  "dependencies": {
    "@fedify/fedify": "^0.12.0",
    "@fedify/fedify": "^0.13.0",
    "@hono/node-server": "^1.11.1"
  }
}
+1 −1
Original line number Diff line number Diff line
{
  "name": "@fedify/fedify",
  "version": "0.12.0",
  "version": "0.13.0",
  "exports": {
    ".": "./mod.ts",
    "./federation": "./federation/mod.ts",