Skip to content

Commit 281fe83

Browse files
chore(release): v0.3.2
1 parent 36c2828 commit 281fe83

59 files changed

Lines changed: 61 additions & 61 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

apps/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@meith/cli",
3-
"version": "0.3.1",
3+
"version": "0.3.2",
44
"private": true,
55
"type": "module",
66
"scripts": {

apps/cli/src/upgrade.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {
99
import type { PluginDefinition } from '@meith/plugin-kit'
1010
import { planUpgrade, upgradeNotice, type PluginUpgrade } from '@meith/upgrade'
1111

12-
export const CODE_VERSION = '0.3.1'
12+
export const CODE_VERSION = '0.3.2'
1313

1414
export function pluginUpgrades(plugins: readonly PluginDefinition[]): readonly PluginUpgrade[] {
1515
return plugins.map((plugin) => ({

apps/community/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@meith/web",
3-
"version": "0.3.1",
3+
"version": "0.3.2",
44
"private": true,
55
"scripts": {
66
"dev": "next dev",

apps/community/src/server/upgrade-notice.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { planUpgrade, upgradeNotice, type UpgradeState } from '@meith/upgrade'
66

77
import { activeDefinitions } from './plugin-host'
88

9-
export const CODE_VERSION = '0.3.1'
9+
export const CODE_VERSION = '0.3.2'
1010

1111
export async function pendingUpgradeNotice(): Promise<string | null> {
1212
if (env.DATA_SOURCE !== 'postgres') return null

apps/web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@meith/site",
3-
"version": "0.3.1",
3+
"version": "0.3.2",
44
"private": true,
55
"scripts": {
66
"dev": "next dev --port 3100",

apps/worker/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@meith/worker",
3-
"version": "0.3.1",
3+
"version": "0.3.2",
44
"private": true,
55
"type": "module",
66
"scripts": {

docker/compose.coolify.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ services:
5656
# applied before the first request rather than racing it — and an upgrade that
5757
# fails to migrate never serves the new code at all.
5858
migrate:
59-
image: ${MEITH_IMAGE:-ghcr.io/meith-dev/meith:0.3.1}
59+
image: ${MEITH_IMAGE:-ghcr.io/meith-dev/meith:0.3.2}
6060
environment:
6161
COMMUNITY_ROLE: migrate
6262
DATABASE_URL: postgres://community:$SERVICE_PASSWORD_POSTGRES@postgres:5432/community
@@ -81,7 +81,7 @@ services:
8181
# worker whether its process is alive. A single web-shaped check declared per
8282
# service is how every worker container ended up permanently unhealthy.
8383
web:
84-
image: ${MEITH_IMAGE:-ghcr.io/meith-dev/meith:0.3.1}
84+
image: ${MEITH_IMAGE:-ghcr.io/meith-dev/meith:0.3.2}
8585
restart: unless-stopped
8686
environment:
8787
# Ask Coolify for a domain on port 3000, then hand the board the same
@@ -127,7 +127,7 @@ services:
127127
# here — queued mail leaves, bans expire, digests send — so a board without
128128
# this service is one where nothing fails and nothing happens.
129129
worker:
130-
image: ${MEITH_IMAGE:-ghcr.io/meith-dev/meith:0.3.1}
130+
image: ${MEITH_IMAGE:-ghcr.io/meith-dev/meith:0.3.2}
131131
restart: unless-stopped
132132
environment:
133133
- COMMUNITY_ROLE=worker

examples/hello-plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@meith/example-plugin-hello",
3-
"version": "0.3.1",
3+
"version": "0.3.2",
44
"private": true,
55
"type": "module",
66
"main": "./src/index.ts",

examples/iris-theme/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@meith/example-theme-iris",
3-
"version": "0.3.1",
3+
"version": "0.3.2",
44
"private": true,
55
"type": "module",
66
"main": "./src/index.ts",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "meith",
3-
"version": "0.3.1",
3+
"version": "0.3.2",
44
"license": "LGPL-3.0-or-later",
55
"packageManager": "pnpm@10.6.0",
66
"private": true,

0 commit comments

Comments
 (0)