From d4f6684487f0707bbd3b902e57cc11504f971b9c Mon Sep 17 00:00:00 2001 From: Shakker Nerd Date: Sat, 21 Dec 2024 02:44:42 +0000 Subject: [PATCH 1/6] fix: remove clients from default character --- packages/core/src/defaultCharacter.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/core/src/defaultCharacter.ts b/packages/core/src/defaultCharacter.ts index 0f115583af..0b44081e2d 100644 --- a/packages/core/src/defaultCharacter.ts +++ b/packages/core/src/defaultCharacter.ts @@ -1,11 +1,11 @@ -import { Character, Clients, ModelProviderName } from "./types.ts"; +import { Character, ModelProviderName } from "./types.ts"; export const defaultCharacter: Character = { name: "Eliza", username: "eliza", plugins: [], - clients: [Clients.DISCORD], - modelProvider: ModelProviderName.OPENAI, + clients: [], + modelProvider: ModelProviderName.OLLAMA, settings: { secrets: {}, voice: { From 305ba667ba6cab63a9bc342a1f38ce14c948face Mon Sep 17 00:00:00 2001 From: Shakker Nerd Date: Sat, 21 Dec 2024 02:48:30 +0000 Subject: [PATCH 2/6] fix: default character model to LLAMALOCAL --- packages/core/src/defaultCharacter.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/defaultCharacter.ts b/packages/core/src/defaultCharacter.ts index 0b44081e2d..91cdeba925 100644 --- a/packages/core/src/defaultCharacter.ts +++ b/packages/core/src/defaultCharacter.ts @@ -5,7 +5,7 @@ export const defaultCharacter: Character = { username: "eliza", plugins: [], clients: [], - modelProvider: ModelProviderName.OLLAMA, + modelProvider: ModelProviderName.LLAMALOCAL, settings: { secrets: {}, voice: { From 33c4626d27bd6722547b386b3115e729ade04edb Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sat, 21 Dec 2024 02:58:04 +0000 Subject: [PATCH 3/6] chore: update changelog --- CHANGELOG.md | 83 +++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 82 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8574509e3a..04644bd618 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,86 @@ # Changelog +## [v0.1.6-alpha.5](https://github.com/ai16z/eliza/tree/v0.1.6-alpha.5) (2024-12-21) + +[Full Changelog](https://github.com/ai16z/eliza/compare/v0.1.6-alpha.4...v0.1.6-alpha.5) + +**Implemented enhancements:** + +- Add @eliza/agent to npm registry [\#1281](https://github.com/ai16z/eliza/issues/1281) +- Implement Redis Caching for Performance [\#1277](https://github.com/ai16z/eliza/issues/1277) +- Improve logging for the Coinbase plugin [\#1261](https://github.com/ai16z/eliza/issues/1261) +- doc: Add Twitter automation label requirement to quickstart guide [\#1253](https://github.com/ai16z/eliza/issues/1253) +- Enhance Logging in /packages/plugin-coinbase/src/plugins Using elizaLogger [\#1192](https://github.com/ai16z/eliza/issues/1192) +- Improve Logging in /packages/plugin-coinbase/src/plugins [\#1189](https://github.com/ai16z/eliza/issues/1189) +- Feat: add github client to core agent [\#1130](https://github.com/ai16z/eliza/issues/1130) + +**Fixed bugs:** + +- SCAM project [\#1286](https://github.com/ai16z/eliza/issues/1286) +- pnpm start --character="characters/trump.character.json" [\#1161](https://github.com/ai16z/eliza/issues/1161) +- REQUIRED\_NODE\_VERSION: No such file [\#1151](https://github.com/ai16z/eliza/issues/1151) +- Discord agents knock each other out of VC [\#1145](https://github.com/ai16z/eliza/issues/1145) +- Missing required secret OPENAI\_API\_KEY in PR workflow [\#1027](https://github.com/ai16z/eliza/issues/1027) + +**Closed issues:** + +- Bug: Application crashes on startup [\#1173](https://github.com/ai16z/eliza/issues/1173) +- Bug: Application crashes on startup [\#1172](https://github.com/ai16z/eliza/issues/1172) + +**Merged pull requests:** + +- fix: default character model to LLAMALOCAL [\#1299](https://github.com/ai16z/eliza/pull/1299) ([shakkernerd](https://github.com/shakkernerd)) +- fix: remove clients from default character [\#1297](https://github.com/ai16z/eliza/pull/1297) ([shakkernerd](https://github.com/shakkernerd)) +- chore: bump version to 0.1.6-alpha.5 [\#1296](https://github.com/ai16z/eliza/pull/1296) ([shakkernerd](https://github.com/shakkernerd)) +- feat: Add caching support for Redis [\#1295](https://github.com/ai16z/eliza/pull/1295) ([shakkernerd](https://github.com/shakkernerd)) +- fix: output checkable variable for conditional [\#1294](https://github.com/ai16z/eliza/pull/1294) ([twilwa](https://github.com/twilwa)) +- fix: add missing claude vertex case to handleProvider [\#1293](https://github.com/ai16z/eliza/pull/1293) ([shakkernerd](https://github.com/shakkernerd)) +- fix: pnpm lock file [\#1292](https://github.com/ai16z/eliza/pull/1292) ([shakkernerd](https://github.com/shakkernerd)) +- fix: integration tests fix [\#1291](https://github.com/ai16z/eliza/pull/1291) ([twilwa](https://github.com/twilwa)) +- feat: Update main for v0.1.6-alpha.5 [\#1290](https://github.com/ai16z/eliza/pull/1290) ([odilitime](https://github.com/odilitime)) +- chore: clean up merged PR1168 [\#1289](https://github.com/ai16z/eliza/pull/1289) ([odilitime](https://github.com/odilitime)) +- fix: fix lockfile [\#1283](https://github.com/ai16z/eliza/pull/1283) ([odilitime](https://github.com/odilitime)) +- feat: Redis Cache Implementation [\#1279](https://github.com/ai16z/eliza/pull/1279) ([shakkernerd](https://github.com/shakkernerd)) +- chore: Revert "fix: pnpm lockfile" [\#1275](https://github.com/ai16z/eliza/pull/1275) ([shakkernerd](https://github.com/shakkernerd)) +- fix: pnpm lockfile [\#1273](https://github.com/ai16z/eliza/pull/1273) ([shakkernerd](https://github.com/shakkernerd)) +- fix: fix ENABLE\_ACTION\_PROCESSING logic [\#1268](https://github.com/ai16z/eliza/pull/1268) ([oxSaturn](https://github.com/oxSaturn)) +- feat: add README\_DE.md in docs directory [\#1262](https://github.com/ai16z/eliza/pull/1262) ([derRizzMeister](https://github.com/derRizzMeister)) +- fix: unsupported model provider: claude\_vertex [\#1258](https://github.com/ai16z/eliza/pull/1258) ([tcm390](https://github.com/tcm390)) +- doc: add Twitter automation label notice \(\#1253\) [\#1254](https://github.com/ai16z/eliza/pull/1254) ([julienbrs](https://github.com/julienbrs)) +- Update trump.character.json [\#1252](https://github.com/ai16z/eliza/pull/1252) ([lalalune](https://github.com/lalalune)) +- fix: Fix local\_llama key warning [\#1250](https://github.com/ai16z/eliza/pull/1250) ([odilitime](https://github.com/odilitime)) +- feat: upgrade Tavily API with comprehensive input and constrain the token consumption [\#1246](https://github.com/ai16z/eliza/pull/1246) ([tomguluson92](https://github.com/tomguluson92)) +- feat: make express payload limit configurable [\#1245](https://github.com/ai16z/eliza/pull/1245) ([renlulu](https://github.com/renlulu)) +- feat: make twitter login retry times as env [\#1244](https://github.com/ai16z/eliza/pull/1244) ([renlulu](https://github.com/renlulu)) +- Fix visibility issue github image cicd [\#1243](https://github.com/ai16z/eliza/pull/1243) ([luisalrp](https://github.com/luisalrp)) +- fix: twitterShouldRespondTemplate Fails When Defined as a String in JSON Character Config [\#1242](https://github.com/ai16z/eliza/pull/1242) ([tcm390](https://github.com/tcm390)) +- fix: Sync UI Client with server port env [\#1239](https://github.com/ai16z/eliza/pull/1239) ([jonathangus](https://github.com/jonathangus)) +- Update trump.character.json - Enhance terminology in the project for clarity and inclusivity [\#1237](https://github.com/ai16z/eliza/pull/1237) ([yjshi2015](https://github.com/yjshi2015)) +- Update README for french, spanish and italian language [\#1236](https://github.com/ai16z/eliza/pull/1236) ([azurwastaken](https://github.com/azurwastaken)) +- feat: add parse mode=Markdown, enhance telegram bot output [\#1229](https://github.com/ai16z/eliza/pull/1229) ([simpletrontdip](https://github.com/simpletrontdip)) +- fix: CircuitBreaker.ts [\#1226](https://github.com/ai16z/eliza/pull/1226) ([tomguluson92](https://github.com/tomguluson92)) +- fix: Allow the bot to post messages with images generated by the imageGenerationPlugin on Telegram. [\#1220](https://github.com/ai16z/eliza/pull/1220) ([tcm390](https://github.com/tcm390)) +- fix: postgres needs the user to exist before you can add a participant [\#1219](https://github.com/ai16z/eliza/pull/1219) ([odilitime](https://github.com/odilitime)) +- chore: clean up scripts [\#1218](https://github.com/ai16z/eliza/pull/1218) ([danbednarski](https://github.com/danbednarski)) +- fix: improve twitter post generation prompt [\#1217](https://github.com/ai16z/eliza/pull/1217) ([cygaar](https://github.com/cygaar)) +- fix: fail when cannot get token, add Akash to generateText switch [\#1214](https://github.com/ai16z/eliza/pull/1214) ([vpavlin](https://github.com/vpavlin)) +- chore: New docs [\#1211](https://github.com/ai16z/eliza/pull/1211) ([madjin](https://github.com/madjin)) +- docs: Update README.md [\#1209](https://github.com/ai16z/eliza/pull/1209) ([marcNY](https://github.com/marcNY)) +- fix: gitpod cicd bug [\#1207](https://github.com/ai16z/eliza/pull/1207) ([v1xingyue](https://github.com/v1xingyue)) +- fix: write summary file before trying to cache it [\#1205](https://github.com/ai16z/eliza/pull/1205) ([tobbelobb](https://github.com/tobbelobb)) +- fix: optional chaining on search to avoid startup errors when search is not enabled [\#1202](https://github.com/ai16z/eliza/pull/1202) ([netdragonx](https://github.com/netdragonx)) +- docs\(cn\): add python 3.7 [\#1201](https://github.com/ai16z/eliza/pull/1201) ([9547](https://github.com/9547)) +- docs: Update "CN README" with more details [\#1196](https://github.com/ai16z/eliza/pull/1196) ([tomguluson92](https://github.com/tomguluson92)) +- docs: fixed CONTRIBUTING.md file Issue: 1048 [\#1191](https://github.com/ai16z/eliza/pull/1191) ([ileana-pr](https://github.com/ileana-pr)) +- test: adding tests for runtime.ts. Modified README since we switched to vitest [\#1190](https://github.com/ai16z/eliza/pull/1190) ([ai16z-demirix](https://github.com/ai16z-demirix)) +- fix: Fix client.push issue and update README for Slack client verification [\#1182](https://github.com/ai16z/eliza/pull/1182) ([SumeetChougule](https://github.com/SumeetChougule)) +- feat: integration tests fixes + library improvements [\#1177](https://github.com/ai16z/eliza/pull/1177) ([jzvikart](https://github.com/jzvikart)) +- docs: Update "What Did You Get Done This Week? 5" spaces notes [\#1174](https://github.com/ai16z/eliza/pull/1174) ([YoungPhlo](https://github.com/YoungPhlo)) +- fix: Fix typo in multiversx plugin prompt for creating token [\#1170](https://github.com/ai16z/eliza/pull/1170) ([thomasWos](https://github.com/thomasWos)) +- feat: make script dash compatible [\#1165](https://github.com/ai16z/eliza/pull/1165) ([shakkernerd](https://github.com/shakkernerd)) +- chore: print commands to start the client and remove unused --non-itera… [\#1163](https://github.com/ai16z/eliza/pull/1163) ([yang-han](https://github.com/yang-han)) +- fix: Enable multiple bots to join Discord voice channels [\#1156](https://github.com/ai16z/eliza/pull/1156) ([tcm390](https://github.com/tcm390)) + ## [v0.1.6-alpha.4](https://github.com/ai16z/eliza/tree/v0.1.6-alpha.4) (2024-12-17) [Full Changelog](https://github.com/ai16z/eliza/compare/v0.1.6-alpha.3...v0.1.6-alpha.4) @@ -116,7 +197,7 @@ - feat: add support for handlebars templating engine as an option [\#1136](https://github.com/ai16z/eliza/pull/1136) ([erise133](https://github.com/erise133)) - feat: allow agents to create/buy/sell tokens on FOMO.fund's bonding curve in plugin-solana [\#1135](https://github.com/ai16z/eliza/pull/1135) ([0xNerd](https://github.com/0xNerd)) - fix: fix the name [\#1133](https://github.com/ai16z/eliza/pull/1133) ([n00b21337](https://github.com/n00b21337)) -- Add `chatapi.akash.network` to available list of model providers \(FREE LLAMA API ACCESS!\) [\#1131](https://github.com/ai16z/eliza/pull/1131) ([MbBrainz](https://github.com/MbBrainz)) +- feat: Add `chatapi.akash.network` to available list of model providers \(FREE LLAMA API ACCESS!\) [\#1131](https://github.com/ai16z/eliza/pull/1131) ([MbBrainz](https://github.com/MbBrainz)) - fix: discord client duplicate function removal [\#1125](https://github.com/ai16z/eliza/pull/1125) ([azep-ninja](https://github.com/azep-ninja)) - fix: add more heplful default agents \(Dobby and C3PO\) [\#1124](https://github.com/ai16z/eliza/pull/1124) ([n00b21337](https://github.com/n00b21337)) - fix: Refactor to prevent unnecessary lockfile changes [\#1120](https://github.com/ai16z/eliza/pull/1120) ([monilpat](https://github.com/monilpat)) From 641ececf67a41825d06ac94be12add7dd4029a6e Mon Sep 17 00:00:00 2001 From: Shakker Nerd <165377636+shakkernerd@users.noreply.github.com> Date: Sat, 21 Dec 2024 03:06:05 +0000 Subject: [PATCH 4/6] chore: Updated node version to 23.3.0 and pnpm version to 9.15.0 --- .github/workflows/release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 7f9d9e12d6..086bfe3c77 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -15,11 +15,11 @@ jobs: - uses: actions/setup-node@v4 with: - node-version: 22 + node-version: 23.3.0 - uses: pnpm/action-setup@v3 with: - version: 8 + version: 9.15.0 - name: Configure Git run: | From dd9a927388ede596191701f476bde76c24e65718 Mon Sep 17 00:00:00 2001 From: Shakker Nerd Date: Sat, 21 Dec 2024 03:24:07 +0000 Subject: [PATCH 5/6] feat: release version 0.1.6 --- agent/package.json | 2 +- client/package.json | 2 +- docs/package.json | 2 +- lerna.json | 2 +- packages/adapter-postgres/package.json | 2 +- packages/adapter-redis/package.json | 2 +- packages/adapter-sqlite/package.json | 2 +- packages/adapter-sqljs/package.json | 2 +- packages/adapter-supabase/package.json | 2 +- packages/client-auto/package.json | 2 +- packages/client-direct/package.json | 2 +- packages/client-discord/package.json | 2 +- packages/client-farcaster/package.json | 2 +- packages/client-github/package.json | 2 +- packages/client-lens/package.json | 2 +- packages/client-slack/package.json | 2 +- packages/client-telegram/package.json | 2 +- packages/client-twitter/package.json | 2 +- packages/core/package.json | 2 +- packages/create-eliza-app/package.json | 2 +- packages/plugin-0g/package.json | 2 +- packages/plugin-aptos/package.json | 2 +- packages/plugin-bootstrap/package.json | 2 +- packages/plugin-coinbase/package.json | 2 +- packages/plugin-conflux/package.json | 2 +- packages/plugin-echochambers/package.json | 2 +- packages/plugin-evm/package.json | 2 +- packages/plugin-flow/package.json | 2 +- packages/plugin-goat/package.json | 2 +- packages/plugin-icp/package.json | 2 +- packages/plugin-image-generation/package.json | 2 +- packages/plugin-intiface/package.json | 2 +- packages/plugin-multiversx/package.json | 2 +- packages/plugin-near/package.json | 2 +- packages/plugin-nft-generation/package.json | 2 +- packages/plugin-node/package.json | 2 +- packages/plugin-solana/package.json | 2 +- packages/plugin-starknet/package.json | 2 +- packages/plugin-story/package.json | 2 +- packages/plugin-sui/package.json | 2 +- packages/plugin-tee/package.json | 2 +- packages/plugin-ton/package.json | 2 +- packages/plugin-trustdb/package.json | 2 +- packages/plugin-video-generation/package.json | 2 +- packages/plugin-web-search/package.json | 2 +- packages/plugin-whatsapp/package.json | 2 +- packages/plugin-zksync-era/package.json | 2 +- 47 files changed, 47 insertions(+), 47 deletions(-) diff --git a/agent/package.json b/agent/package.json index 36b04892a3..d95732b5bc 100644 --- a/agent/package.json +++ b/agent/package.json @@ -1,6 +1,6 @@ { "name": "@ai16z/agent", - "version": "0.1.6-alpha.5", + "version": "0.1.6", "main": "src/index.ts", "type": "module", "scripts": { diff --git a/client/package.json b/client/package.json index db905be8e0..f81832f1f8 100644 --- a/client/package.json +++ b/client/package.json @@ -1,7 +1,7 @@ { "name": "eliza-client", "private": true, - "version": "0.1.6-alpha.5", + "version": "0.1.6", "type": "module", "scripts": { "dev": "vite", diff --git a/docs/package.json b/docs/package.json index a7d8d38263..c6aac583d6 100644 --- a/docs/package.json +++ b/docs/package.json @@ -1,6 +1,6 @@ { "name": "eliza-docs", - "version": "0.1.6-alpha.5", + "version": "0.1.6", "private": true, "scripts": { "docusaurus": "docusaurus", diff --git a/lerna.json b/lerna.json index e15c001e90..3ec3f22d6e 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "0.1.6-alpha.5", + "version": "0.1.6", "packages": [ "packages/*", "docs", diff --git a/packages/adapter-postgres/package.json b/packages/adapter-postgres/package.json index becb05cf50..58c7233a4d 100644 --- a/packages/adapter-postgres/package.json +++ b/packages/adapter-postgres/package.json @@ -1,6 +1,6 @@ { "name": "@ai16z/adapter-postgres", - "version": "0.1.6-alpha.5", + "version": "0.1.6", "main": "dist/index.js", "type": "module", "types": "dist/index.d.ts", diff --git a/packages/adapter-redis/package.json b/packages/adapter-redis/package.json index 877d45d1c3..c73fdb8096 100644 --- a/packages/adapter-redis/package.json +++ b/packages/adapter-redis/package.json @@ -1,6 +1,6 @@ { "name": "@ai16z/adapter-redis", - "version": "0.1.6-alpha.5", + "version": "0.1.6", "main": "dist/index.js", "type": "module", "types": "dist/index.d.ts", diff --git a/packages/adapter-sqlite/package.json b/packages/adapter-sqlite/package.json index d943359ffd..ae17f5fe3a 100644 --- a/packages/adapter-sqlite/package.json +++ b/packages/adapter-sqlite/package.json @@ -1,6 +1,6 @@ { "name": "@ai16z/adapter-sqlite", - "version": "0.1.6-alpha.5", + "version": "0.1.6", "main": "dist/index.js", "type": "module", "types": "dist/index.d.ts", diff --git a/packages/adapter-sqljs/package.json b/packages/adapter-sqljs/package.json index 8dd235d1e0..887277b5b1 100644 --- a/packages/adapter-sqljs/package.json +++ b/packages/adapter-sqljs/package.json @@ -1,6 +1,6 @@ { "name": "@ai16z/adapter-sqljs", - "version": "0.1.6-alpha.5", + "version": "0.1.6", "main": "dist/index.js", "type": "module", "types": "dist/index.d.ts", diff --git a/packages/adapter-supabase/package.json b/packages/adapter-supabase/package.json index 281ed7a4ba..f458c53196 100644 --- a/packages/adapter-supabase/package.json +++ b/packages/adapter-supabase/package.json @@ -1,6 +1,6 @@ { "name": "@ai16z/adapter-supabase", - "version": "0.1.6-alpha.5", + "version": "0.1.6", "main": "dist/index.js", "type": "module", "types": "dist/index.d.ts", diff --git a/packages/client-auto/package.json b/packages/client-auto/package.json index a28b6dcdcc..b64c9171e1 100644 --- a/packages/client-auto/package.json +++ b/packages/client-auto/package.json @@ -1,6 +1,6 @@ { "name": "@ai16z/client-auto", - "version": "0.1.6-alpha.5", + "version": "0.1.6", "main": "dist/index.js", "type": "module", "types": "dist/index.d.ts", diff --git a/packages/client-direct/package.json b/packages/client-direct/package.json index 92f5e98c83..2c678f0f4e 100644 --- a/packages/client-direct/package.json +++ b/packages/client-direct/package.json @@ -1,6 +1,6 @@ { "name": "@ai16z/client-direct", - "version": "0.1.6-alpha.5", + "version": "0.1.6", "main": "dist/index.js", "type": "module", "types": "dist/index.d.ts", diff --git a/packages/client-discord/package.json b/packages/client-discord/package.json index 8cbb896931..e5e43c69c2 100644 --- a/packages/client-discord/package.json +++ b/packages/client-discord/package.json @@ -1,6 +1,6 @@ { "name": "@ai16z/client-discord", - "version": "0.1.6-alpha.5", + "version": "0.1.6", "main": "dist/index.js", "type": "module", "types": "dist/index.d.ts", diff --git a/packages/client-farcaster/package.json b/packages/client-farcaster/package.json index 2cb69bba9b..5e9785ae3d 100644 --- a/packages/client-farcaster/package.json +++ b/packages/client-farcaster/package.json @@ -1,6 +1,6 @@ { "name": "@ai16z/client-farcaster", - "version": "0.1.6-alpha.5", + "version": "0.1.6", "main": "dist/index.js", "type": "module", "types": "dist/index.d.ts", diff --git a/packages/client-github/package.json b/packages/client-github/package.json index b02ca45e85..720d09316b 100644 --- a/packages/client-github/package.json +++ b/packages/client-github/package.json @@ -1,6 +1,6 @@ { "name": "@ai16z/client-github", - "version": "0.1.6-alpha.5", + "version": "0.1.6", "main": "dist/index.js", "type": "module", "types": "dist/index.d.ts", diff --git a/packages/client-lens/package.json b/packages/client-lens/package.json index d526c51ebf..a627e82717 100644 --- a/packages/client-lens/package.json +++ b/packages/client-lens/package.json @@ -1,6 +1,6 @@ { "name": "@ai16z/client-lens", - "version": "0.1.6-alpha.5", + "version": "0.1.6", "main": "dist/index.js", "type": "module", "types": "dist/index.d.ts", diff --git a/packages/client-slack/package.json b/packages/client-slack/package.json index 88f4381cac..7c2f4625ca 100644 --- a/packages/client-slack/package.json +++ b/packages/client-slack/package.json @@ -1,6 +1,6 @@ { "name": "@ai16z/client-slack", - "version": "0.1.6-alpha.5", + "version": "0.1.6", "description": "Slack client plugin for Eliza framework", "main": "dist/index.js", "type": "module", diff --git a/packages/client-telegram/package.json b/packages/client-telegram/package.json index 50418a7fc7..183634bddc 100644 --- a/packages/client-telegram/package.json +++ b/packages/client-telegram/package.json @@ -1,6 +1,6 @@ { "name": "@ai16z/client-telegram", - "version": "0.1.6-alpha.5", + "version": "0.1.6", "main": "dist/index.js", "type": "module", "types": "dist/index.d.ts", diff --git a/packages/client-twitter/package.json b/packages/client-twitter/package.json index 2a99f1a356..6ed8c752d8 100644 --- a/packages/client-twitter/package.json +++ b/packages/client-twitter/package.json @@ -1,6 +1,6 @@ { "name": "@ai16z/client-twitter", - "version": "0.1.6-alpha.5", + "version": "0.1.6", "main": "dist/index.js", "type": "module", "types": "dist/index.d.ts", diff --git a/packages/core/package.json b/packages/core/package.json index 20a51dedf4..e1492e5905 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@ai16z/eliza", - "version": "0.1.6-alpha.5", + "version": "0.1.6", "description": "", "main": "dist/index.js", "type": "module", diff --git a/packages/create-eliza-app/package.json b/packages/create-eliza-app/package.json index 9809f4e91d..44bb7dcdf8 100644 --- a/packages/create-eliza-app/package.json +++ b/packages/create-eliza-app/package.json @@ -1,6 +1,6 @@ { "name": "create-eliza-app", - "version": "0.1.6-alpha.5", + "version": "0.1.6", "description": "", "sideEffects": false, "files": [ diff --git a/packages/plugin-0g/package.json b/packages/plugin-0g/package.json index 3b342b1803..8ea830c889 100644 --- a/packages/plugin-0g/package.json +++ b/packages/plugin-0g/package.json @@ -1,6 +1,6 @@ { "name": "@ai16z/plugin-0g", - "version": "0.1.6-alpha.5", + "version": "0.1.6", "main": "dist/index.js", "type": "module", "types": "dist/index.d.ts", diff --git a/packages/plugin-aptos/package.json b/packages/plugin-aptos/package.json index d08c655259..1178306e58 100644 --- a/packages/plugin-aptos/package.json +++ b/packages/plugin-aptos/package.json @@ -1,6 +1,6 @@ { "name": "@ai16z/plugin-aptos", - "version": "0.1.6-alpha.5", + "version": "0.1.6", "main": "dist/index.js", "type": "module", "types": "dist/index.d.ts", diff --git a/packages/plugin-bootstrap/package.json b/packages/plugin-bootstrap/package.json index b46a0a8cac..1eea53093d 100644 --- a/packages/plugin-bootstrap/package.json +++ b/packages/plugin-bootstrap/package.json @@ -1,6 +1,6 @@ { "name": "@ai16z/plugin-bootstrap", - "version": "0.1.6-alpha.5", + "version": "0.1.6", "main": "dist/index.js", "type": "module", "types": "dist/index.d.ts", diff --git a/packages/plugin-coinbase/package.json b/packages/plugin-coinbase/package.json index bdc5c747f2..d486dc688b 100644 --- a/packages/plugin-coinbase/package.json +++ b/packages/plugin-coinbase/package.json @@ -1,6 +1,6 @@ { "name": "@ai16z/plugin-coinbase", - "version": "0.1.6-alpha.5", + "version": "0.1.6", "main": "dist/index.js", "type": "module", "types": "dist/index.d.ts", diff --git a/packages/plugin-conflux/package.json b/packages/plugin-conflux/package.json index 1459d1526c..908d07b976 100644 --- a/packages/plugin-conflux/package.json +++ b/packages/plugin-conflux/package.json @@ -1,6 +1,6 @@ { "name": "@ai16z/plugin-conflux", - "version": "0.1.6-alpha.5", + "version": "0.1.6", "main": "dist/index.js", "type": "module", "types": "dist/index.d.ts", diff --git a/packages/plugin-echochambers/package.json b/packages/plugin-echochambers/package.json index 1fb6096731..1c149931b1 100644 --- a/packages/plugin-echochambers/package.json +++ b/packages/plugin-echochambers/package.json @@ -1,6 +1,6 @@ { "name": "@ai16z/plugin-echochambers", - "version": "0.1.6-alpha.5", + "version": "0.1.6", "main": "dist/index.js", "type": "module", "types": "dist/index.d.ts", diff --git a/packages/plugin-evm/package.json b/packages/plugin-evm/package.json index 06b0e704ce..d784ddacf8 100644 --- a/packages/plugin-evm/package.json +++ b/packages/plugin-evm/package.json @@ -1,6 +1,6 @@ { "name": "@ai16z/plugin-evm", - "version": "0.1.6-alpha.5", + "version": "0.1.6", "main": "dist/index.js", "type": "module", "types": "dist/index.d.ts", diff --git a/packages/plugin-flow/package.json b/packages/plugin-flow/package.json index 504c3d618f..4b667eb3e2 100644 --- a/packages/plugin-flow/package.json +++ b/packages/plugin-flow/package.json @@ -1,6 +1,6 @@ { "name": "@ai16z/plugin-flow", - "version": "0.1.6-alpha.5", + "version": "0.1.6", "main": "dist/index.js", "type": "module", "types": "dist/index.d.ts", diff --git a/packages/plugin-goat/package.json b/packages/plugin-goat/package.json index dba8ac1ab9..d1439628fe 100644 --- a/packages/plugin-goat/package.json +++ b/packages/plugin-goat/package.json @@ -1,6 +1,6 @@ { "name": "@ai16z/plugin-goat", - "version": "0.1.6-alpha.5", + "version": "0.1.6", "main": "dist/index.js", "type": "module", "types": "dist/index.d.ts", diff --git a/packages/plugin-icp/package.json b/packages/plugin-icp/package.json index ff6cf588db..45303ca883 100644 --- a/packages/plugin-icp/package.json +++ b/packages/plugin-icp/package.json @@ -1,6 +1,6 @@ { "name": "@ai16z/plugin-icp", - "version": "0.1.6-alpha.5", + "version": "0.1.6", "main": "dist/index.js", "type": "module", "types": "dist/index.d.ts", diff --git a/packages/plugin-image-generation/package.json b/packages/plugin-image-generation/package.json index 7dfb6ce761..05b8e0465a 100644 --- a/packages/plugin-image-generation/package.json +++ b/packages/plugin-image-generation/package.json @@ -1,6 +1,6 @@ { "name": "@ai16z/plugin-image-generation", - "version": "0.1.6-alpha.5", + "version": "0.1.6", "main": "dist/index.js", "type": "module", "types": "dist/index.d.ts", diff --git a/packages/plugin-intiface/package.json b/packages/plugin-intiface/package.json index a1008b12a4..673951d338 100644 --- a/packages/plugin-intiface/package.json +++ b/packages/plugin-intiface/package.json @@ -1,6 +1,6 @@ { "name": "@ai16z/plugin-intiface", - "version": "0.1.6-alpha.5", + "version": "0.1.6", "main": "dist/index.js", "type": "module", "types": "dist/index.d.ts", diff --git a/packages/plugin-multiversx/package.json b/packages/plugin-multiversx/package.json index aa590a31fa..cb9f075c35 100644 --- a/packages/plugin-multiversx/package.json +++ b/packages/plugin-multiversx/package.json @@ -1,6 +1,6 @@ { "name": "@ai16z/plugin-multiversx", - "version": "0.1.6-alpha.5", + "version": "0.1.6", "main": "dist/index.js", "type": "module", "types": "dist/index.d.ts", diff --git a/packages/plugin-near/package.json b/packages/plugin-near/package.json index 54198a32e9..4d699870e9 100644 --- a/packages/plugin-near/package.json +++ b/packages/plugin-near/package.json @@ -1,6 +1,6 @@ { "name": "@ai16z/plugin-near", - "version": "0.1.6-alpha.5", + "version": "0.1.6", "main": "dist/index.js", "type": "module", "types": "dist/index.d.ts", diff --git a/packages/plugin-nft-generation/package.json b/packages/plugin-nft-generation/package.json index 9d187cfb60..35633593bd 100644 --- a/packages/plugin-nft-generation/package.json +++ b/packages/plugin-nft-generation/package.json @@ -1,6 +1,6 @@ { "name": "@ai16z/plugin-nft-generation", - "version": "0.1.6-alpha.5", + "version": "0.1.6", "main": "dist/index.js", "type": "module", "types": "dist/index.d.ts", diff --git a/packages/plugin-node/package.json b/packages/plugin-node/package.json index 13a5e4dab1..5fbdcfd5cd 100644 --- a/packages/plugin-node/package.json +++ b/packages/plugin-node/package.json @@ -1,6 +1,6 @@ { "name": "@ai16z/plugin-node", - "version": "0.1.6-alpha.5", + "version": "0.1.6", "main": "dist/index.js", "type": "module", "types": "dist/index.d.ts", diff --git a/packages/plugin-solana/package.json b/packages/plugin-solana/package.json index e32600f579..3e2b37b820 100644 --- a/packages/plugin-solana/package.json +++ b/packages/plugin-solana/package.json @@ -1,6 +1,6 @@ { "name": "@ai16z/plugin-solana", - "version": "0.1.6-alpha.5", + "version": "0.1.6", "main": "dist/index.js", "type": "module", "types": "dist/index.d.ts", diff --git a/packages/plugin-starknet/package.json b/packages/plugin-starknet/package.json index dac5e6b78d..82a293c642 100644 --- a/packages/plugin-starknet/package.json +++ b/packages/plugin-starknet/package.json @@ -1,6 +1,6 @@ { "name": "@ai16z/plugin-starknet", - "version": "0.1.6-alpha.5", + "version": "0.1.6", "main": "dist/index.js", "type": "module", "types": "dist/index.d.ts", diff --git a/packages/plugin-story/package.json b/packages/plugin-story/package.json index 7c4993a8d5..651443c940 100644 --- a/packages/plugin-story/package.json +++ b/packages/plugin-story/package.json @@ -1,6 +1,6 @@ { "name": "@ai16z/plugin-story", - "version": "0.1.6-alpha.5", + "version": "0.1.6", "main": "dist/index.js", "type": "module", "types": "dist/index.d.ts", diff --git a/packages/plugin-sui/package.json b/packages/plugin-sui/package.json index 16b07d937c..9322acf4c4 100644 --- a/packages/plugin-sui/package.json +++ b/packages/plugin-sui/package.json @@ -1,6 +1,6 @@ { "name": "@ai16z/plugin-sui", - "version": "0.1.6-alpha.5", + "version": "0.1.6", "main": "dist/index.js", "type": "module", "types": "dist/index.d.ts", diff --git a/packages/plugin-tee/package.json b/packages/plugin-tee/package.json index 5cd4e93f17..6b009ec1c9 100644 --- a/packages/plugin-tee/package.json +++ b/packages/plugin-tee/package.json @@ -1,6 +1,6 @@ { "name": "@ai16z/plugin-tee", - "version": "0.1.6-alpha.5", + "version": "0.1.6", "main": "dist/index.js", "type": "module", "types": "dist/index.d.ts", diff --git a/packages/plugin-ton/package.json b/packages/plugin-ton/package.json index a6017ccc4e..a3b4538055 100644 --- a/packages/plugin-ton/package.json +++ b/packages/plugin-ton/package.json @@ -1,6 +1,6 @@ { "name": "@ai16z/plugin-ton", - "version": "0.1.6-alpha.5", + "version": "0.1.6", "main": "dist/index.js", "type": "module", "types": "dist/index.d.ts", diff --git a/packages/plugin-trustdb/package.json b/packages/plugin-trustdb/package.json index bd1109c3e2..5d7755d338 100644 --- a/packages/plugin-trustdb/package.json +++ b/packages/plugin-trustdb/package.json @@ -1,6 +1,6 @@ { "name": "@ai16z/plugin-trustdb", - "version": "0.1.6-alpha.5", + "version": "0.1.6", "main": "dist/index.js", "type": "module", "types": "dist/index.d.ts", diff --git a/packages/plugin-video-generation/package.json b/packages/plugin-video-generation/package.json index 30d84a4f21..272af62ff1 100644 --- a/packages/plugin-video-generation/package.json +++ b/packages/plugin-video-generation/package.json @@ -1,6 +1,6 @@ { "name": "@ai16z/plugin-video-generation", - "version": "0.1.6-alpha.5", + "version": "0.1.6", "main": "dist/index.js", "type": "module", "types": "dist/index.d.ts", diff --git a/packages/plugin-web-search/package.json b/packages/plugin-web-search/package.json index 5857709ea4..e8ab572096 100644 --- a/packages/plugin-web-search/package.json +++ b/packages/plugin-web-search/package.json @@ -1,6 +1,6 @@ { "name": "@ai16z/plugin-web-search", - "version": "0.1.6-alpha.5", + "version": "0.1.6", "main": "dist/index.js", "type": "module", "types": "dist/index.d.ts", diff --git a/packages/plugin-whatsapp/package.json b/packages/plugin-whatsapp/package.json index 2d6aa004f0..21ea02b30b 100644 --- a/packages/plugin-whatsapp/package.json +++ b/packages/plugin-whatsapp/package.json @@ -1,6 +1,6 @@ { "name": "@ai16z/plugin-whatsapp", - "version": "0.1.6-alpha.5", + "version": "0.1.6", "description": "WhatsApp Cloud API plugin", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/plugin-zksync-era/package.json b/packages/plugin-zksync-era/package.json index b5d483d0fc..6a09f5c9ed 100644 --- a/packages/plugin-zksync-era/package.json +++ b/packages/plugin-zksync-era/package.json @@ -1,6 +1,6 @@ { "name": "@ai16z/plugin-zksync-era", - "version": "0.1.6-alpha.5", + "version": "0.1.6", "main": "dist/index.js", "type": "module", "types": "dist/index.d.ts", From e185e6a6c8453fe325c972eae515edb8e1d28317 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sat, 21 Dec 2024 03:26:53 +0000 Subject: [PATCH 6/6] chore: update changelog --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 04644bd618..cb2e780edc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [v0.1.6](https://github.com/ai16z/eliza/tree/v0.1.6) (2024-12-21) + +[Full Changelog](https://github.com/ai16z/eliza/compare/v0.1.6-alpha.5...v0.1.6) + +**Merged pull requests:** + +- feat: release version 0.1.6 [\#1300](https://github.com/ai16z/eliza/pull/1300) ([shakkernerd](https://github.com/shakkernerd)) + ## [v0.1.6-alpha.5](https://github.com/ai16z/eliza/tree/v0.1.6-alpha.5) (2024-12-21) [Full Changelog](https://github.com/ai16z/eliza/compare/v0.1.6-alpha.4...v0.1.6-alpha.5)