Skip to content
This repository was archived by the owner on Oct 22, 2025. It is now read-only.
Closed
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
2 changes: 1 addition & 1 deletion clients/rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "actor-core-client"
version = "0.7.6"
version = "0.7.7"
description = "Rust client for ActorCore - the Stateful Serverless Framework for building AI agents, realtime apps, and game servers"
edition = "2021"
authors = ["Rivet Gaming, LLC <developer@rivet.gg>"]
Expand Down
2 changes: 1 addition & 1 deletion examples/chat-room/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chat-room",
"version": "0.7.6",
"version": "0.7.7",
"private": true,
"type": "module",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion examples/counter/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "counter",
"version": "0.7.6",
"version": "0.7.7",
"private": true,
"type": "module",
"scripts": {
Expand Down
4 changes: 1 addition & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@
"packages/drivers/*",
"packages/components/*",
"packages/misc/*",
"packages/frameworks/*",
"examples/chat-room/",
"examples/counter/"
"packages/frameworks/*"
],
"scripts": {
"start": "npx turbo watch build",
Expand Down
2 changes: 1 addition & 1 deletion packages/actor-core-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@actor-core/cli",
"description": "All purpose CLI for ActorCore",
"version": "0.7.6",
"version": "0.7.7",
"license": "Apache-2.0",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/actor-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "actor-core",
"version": "0.7.6",
"version": "0.7.7",
"license": "Apache-2.0",
"files": [
"dist",
Expand Down
2 changes: 1 addition & 1 deletion packages/create-actor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"directory": "packages/create-actor"
},
"type": "module",
"version": "0.7.6",
"version": "0.7.7",
"bin": {
"ca": "dist/cli.js",
"cac": "dist/cli.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/drivers/memory/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@actor-core/memory",
"version": "0.7.6",
"version": "0.7.7",
"files": [
"src",
"dist",
Expand Down
2 changes: 1 addition & 1 deletion packages/drivers/redis/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@actor-core/redis",
"version": "0.7.6",
"version": "0.7.7",
"files": [
"src",
"dist",
Expand Down
2 changes: 1 addition & 1 deletion packages/frameworks/framework-base/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@actor-core/framework-base",
"version": "0.7.6",
"version": "0.7.7",
"license": "Apache-2.0",
"sideEffects": false,
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion packages/frameworks/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@actor-core/react",
"version": "0.7.6",
"version": "0.7.7",
"license": "Apache-2.0",
"sideEffects": false,
"files": [
Expand Down
2 changes: 1 addition & 1 deletion packages/misc/docs-middleware/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "docs-middleware",
"version": "0.7.6",
"version": "0.7.7",
"private": true,
"scripts": {
"deploy": "wrangler deploy",
Expand Down
2 changes: 1 addition & 1 deletion packages/platforms/bun/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@actor-core/bun",
"version": "0.7.6",
"version": "0.7.7",
"files": [
"src",
"dist",
Expand Down
2 changes: 1 addition & 1 deletion packages/platforms/cloudflare-workers/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@actor-core/cloudflare-workers",
"version": "0.7.6",
"version": "0.7.7",
"files": [
"src",
"dist",
Expand Down
2 changes: 1 addition & 1 deletion packages/platforms/nodejs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@actor-core/nodejs",
"version": "0.7.6",
"version": "0.7.7",
"files": [
"src",
"dist",
Expand Down
2 changes: 1 addition & 1 deletion packages/platforms/rivet/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@actor-core/rivet",
"version": "0.7.6",
"version": "0.7.7",
"files": [
"src",
"dist",
Expand Down
14 changes: 14 additions & 0 deletions scripts/release.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
import { $, chalk, argv } from "zx";

async function main() {
// Clean the workspace first
await cleanWorkspace();

// Update version
const version = getVersionFromArgs();
await bumpPackageVersions(version);
Expand Down Expand Up @@ -76,6 +79,17 @@ async function runRustCheck() {
}
}

async function cleanWorkspace() {
console.log(chalk.blue("Cleaning workspace..."));
try {
await $`git clean -fdx`;
console.log(chalk.green("✅ Workspace cleaned"));
} catch (err) {
console.error(chalk.red("❌ Failed to clean workspace"), err);
process.exit(1);
}
}

async function publishRustClient(version: string) {
console.log(chalk.blue("Publishing Rust client..."));

Expand Down
Loading