Skip to content

Commit dfc55cc

Browse files
Merge pull request #4804 from elizaOS/release-v1
chore: v1 release, unbeta CLI, docs, core.
2 parents c64cc92 + e11e46d commit dfc55cc

Some content is hidden

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

51 files changed

+150
-1607
lines changed

.github/workflows/cli-prod-validation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
- name: Install global CLI packages
3434
run: |
35-
npm install -g @elizaos/cli@beta
35+
npm install -g @elizaos/cli
3636
npm install -g bats
3737
3838
- name: Verify global installations

.github/workflows/cli-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ env:
77
on:
88
push:
99
branches:
10-
- 'v2-develop'
10+
- 'main'
1111
paths:
1212
- 'packages/cli/**'
1313
- 'packages/core/**'
@@ -16,7 +16,7 @@ on:
1616
- '.github/workflows/cli-tests.yml'
1717
pull_request:
1818
branches:
19-
- 'v2-develop'
19+
- 'main'
2020
paths:
2121
- 'packages/cli/**'
2222
- 'packages/core/**'

.github/workflows/deploy-cli.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@ on:
66
release_tag:
77
description: 'Release tag for publishing'
88
required: true
9-
default: 'beta'
9+
default: 'latest'
1010
type: choice
1111
options:
12+
- latest
1213
- beta
1314
- alpha
1415

@@ -40,7 +41,12 @@ jobs:
4041
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
4142

4243
- name: Publish CLI
43-
run: npx lerna publish prerelease --preid ${{ github.event.inputs.release_tag }} --dist-tag ${{ github.event.inputs.release_tag }} --no-private --force-publish --yes
44+
run: |
45+
if [ "${{ github.event.inputs.release_tag }}" = "latest" ]; then
46+
npx lerna publish --no-private --force-publish --yes
47+
else
48+
npx lerna publish prerelease --preid ${{ github.event.inputs.release_tag }} --dist-tag ${{ github.event.inputs.release_tag }} --no-private --force-publish --yes
49+
fi
4450
env:
4551
NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
4652
GH_TOKEN: ${{ secrets.GH_PAT }}

.github/workflows/deploy-flyio.yml

Lines changed: 0 additions & 47 deletions
This file was deleted.

.husky/pre-commit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/usr/bin/env sh
22

3-
bun run scripts/pre-commit-lint.js
3+
# bun run scripts/pre-commit-lint.js

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0-beta.76",
2+
"version": "1.0.0",
33
"packages": ["packages/*"],
44
"npmClient": "bun",
55
"command": {

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eliza",
3-
"version": "1.0.0-beta.69",
3+
"version": "1.0.0",
44
"module": "index.ts",
55
"type": "module",
66
"engines": {
@@ -21,7 +21,6 @@
2121
"pre-commit": "bun run scripts/pre-commit-lint.js",
2222
"release": "bun run build && bun lint && lerna publish --no-private --force-publish && bun lint",
2323
"release:alpha": "lerna publish prerelease --preid alpha --dist-tag alpha --no-private --force-publish --loglevel verbose",
24-
"release:beta": "lerna publish prerelease --preid beta --dist-tag beta --no-private --force-publish --loglevel verbose",
2524
"migrate": "turbo run migrate --filter=./packages/plugin-sql --force",
2625
"migrate:generate": "turbo run migrate:generate --filter=./packages/plugin-sql",
2726
"docker:build": "bash ./scripts/docker.sh build",
@@ -44,7 +43,7 @@
4443
"@types/bun": "latest",
4544
"@types/node": "^22.15.3",
4645
"@types/uuid": "^10.0.0",
47-
"bun": "^1.2.13",
46+
"bun": "^1.2.15",
4847
"husky": "^9.1.7",
4948
"lerna": "8.1.4",
5049
"tsup": "8.5.0",

packages/app/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@elizaos/app",
3-
"version": "1.0.0-beta.57",
3+
"version": "1.0.0",
44
"private": true,
55
"type": "module",
66
"scripts": {
@@ -17,7 +17,7 @@
1717
"lint": "prettier --write ./src"
1818
},
1919
"dependencies": {
20-
"@elizaos/cli": "^1.0.0-beta",
20+
"@elizaos/cli": "^1.0.0",
2121
"@tauri-apps/api": "^2.3.0",
2222
"@tauri-apps/plugin-opener": "^2",
2323
"@tauri-apps/plugin-shell": "^2",

packages/autodoc/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"type": "module",
33
"name": "@elizaos/autodoc",
4-
"version": "1.0.0-beta.41",
4+
"version": "1.0.0",
55
"private": true,
66
"description": "",
77
"main": "dist/index.js",

packages/cli/.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# No configuration needed for SQLite
2-
ELIZA_BRANCH=v2-develop
2+
ELIZA_BRANCH=main

0 commit comments

Comments
 (0)