From ffe5fbcd5158b7d000b58dfc8ce58f2c1ec9b528 Mon Sep 17 00:00:00 2001
From: Marcus Schiesser <mail@marcusschiesser.de>
Date: Thu, 25 Jan 2024 11:09:36 +0700
Subject: [PATCH] RELEASING: Releasing 1 package(s)

Releases:
  llamaindex@0.0.49

[skip ci]
---
 .changeset/chatty-parents-smell.md |  5 -----
 .changeset/mighty-chicken-trade.md |  5 -----
 .changeset/popular-grapes-cheat.md | 16 ----------------
 .changeset/three-hounds-count.md   |  5 -----
 packages/core/CHANGELOG.md         | 21 +++++++++++++++++++++
 packages/core/package.json         |  2 +-
 6 files changed, 22 insertions(+), 32 deletions(-)
 delete mode 100644 .changeset/chatty-parents-smell.md
 delete mode 100644 .changeset/mighty-chicken-trade.md
 delete mode 100644 .changeset/popular-grapes-cheat.md
 delete mode 100644 .changeset/three-hounds-count.md

diff --git a/.changeset/chatty-parents-smell.md b/.changeset/chatty-parents-smell.md
deleted file mode 100644
index 0bb55c31e..000000000
--- a/.changeset/chatty-parents-smell.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-"llamaindex": patch
----
-
-feat(qdrant): Add Qdrant Vector DB
diff --git a/.changeset/mighty-chicken-trade.md b/.changeset/mighty-chicken-trade.md
deleted file mode 100644
index 4a4e17931..000000000
--- a/.changeset/mighty-chicken-trade.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-"llamaindex": patch
----
-
-Preview: Add ingestion pipeline (incl. different strategies to handle doc store duplicates)
diff --git a/.changeset/popular-grapes-cheat.md b/.changeset/popular-grapes-cheat.md
deleted file mode 100644
index bf1b4c9d7..000000000
--- a/.changeset/popular-grapes-cheat.md
+++ /dev/null
@@ -1,16 +0,0 @@
----
-"llamaindex": patch
----
-
-feat: use conditional exports
-
-The benefit of conditional exports is we split the llamaindex into different files. This will improve the tree shake if you are building web apps.
-
-This also requires node16 (see https://nodejs.org/api/packages.html#conditional-exports).
-
-If you are seeing typescript issue `TS2724`('llamaindex' has no exported member named XXX):
-
-1. update `moduleResolution` to `bundler` in `tsconfig.json`, more for the web applications like Next.js, and vite, but still works for ts-node or tsx.
-2. consider the ES module in your project, add `"type": "module"` into `package.json` and update `moduleResolution` to `node16` or `nodenext` in `tsconfig.json`.
-
-We still support both cjs and esm, but you should update `tsconfig.json` to make the typescript happy.
diff --git a/.changeset/three-hounds-count.md b/.changeset/three-hounds-count.md
deleted file mode 100644
index a9ec11e53..000000000
--- a/.changeset/three-hounds-count.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-"llamaindex": patch
----
-
-feat(extractors): add keyword extractor and base extractor
diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md
index 4ff09510e..98cb3ebd9 100644
--- a/packages/core/CHANGELOG.md
+++ b/packages/core/CHANGELOG.md
@@ -1,5 +1,26 @@
 # llamaindex
 
+## 0.0.49
+
+### Patch Changes
+
+- eee3922: feat(qdrant): Add Qdrant Vector DB
+- e2790da: Preview: Add ingestion pipeline (incl. different strategies to handle doc store duplicates)
+- bff40f2: feat: use conditional exports
+
+  The benefit of conditional exports is we split the llamaindex into different files. This will improve the tree shake if you are building web apps.
+
+  This also requires node16 (see https://nodejs.org/api/packages.html#conditional-exports).
+
+  If you are seeing typescript issue `TS2724`('llamaindex' has no exported member named XXX):
+
+  1. update `moduleResolution` to `bundler` in `tsconfig.json`, more for the web applications like Next.js, and vite, but still works for ts-node or tsx.
+  2. consider the ES module in your project, add `"type": "module"` into `package.json` and update `moduleResolution` to `node16` or `nodenext` in `tsconfig.json`.
+
+  We still support both cjs and esm, but you should update `tsconfig.json` to make the typescript happy.
+
+- 2d8845b: feat(extractors): add keyword extractor and base extractor
+
 ## 0.0.48
 
 ### Patch Changes
diff --git a/packages/core/package.json b/packages/core/package.json
index 76ce2a65c..eb52f0748 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
 {
   "name": "llamaindex",
-  "version": "0.0.48",
+  "version": "0.0.49",
   "license": "MIT",
   "dependencies": {
     "@anthropic-ai/sdk": "^0.9.1",
-- 
GitLab