Skip to content

Commit

Permalink
chore: version packages (#15)
Browse files Browse the repository at this point in the history
* chore: version packages

* fix: added test ignore

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Chase Adams <c@cadams.io>
  • Loading branch information
3 people committed Oct 2, 2023
1 parent 5c29dec commit 2a505d0
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 11 deletions.
6 changes: 0 additions & 6 deletions .changeset/large-shoes-thank.md

This file was deleted.

7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# hopfield

## 0.2.1

### Patch Changes

- [#14](https://github.com/propology/hopfield/pull/14) [`5c29dec`](https://github.com/propology/hopfield/commit/5c29dec3ae8f0866513a9648b8f6563df5c48118) Thanks [@0xcadams](https://github.com/0xcadams)! - **Feature:** added a `ReadableStream` to the response from the Streaming Chat provider and removed `readableFromAsyncIterable`
from the exports, to simplify integration.

## 0.2.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion examples/next-13-openai/src/app/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export function Footer() {
<a
target="_blank"
rel="noopener noreferrer"
href="https://github.com/propology/hopfield/examples/next-13-openai"
href="https://github.com/propology/hopfield/tree/main/examples/next-13-openai"
className="relative w-8 h-8"
>
<Image src={gh} alt="github logo" fill />
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "hopfield",
"description": "Typescript-first LLM framework with static type inference, testability, and composability.",
"version": "0.2.0",
"version": "0.2.1",
"license": "MIT",
"repository": "propology/hopfield",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion scripts/updateVersion.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ const versionFilePath = path.join(__dirname, '../src/version.ts');
const packageJsonPath = path.join(__dirname, '../package.json');
const packageVersion = readJsonSync(packageJsonPath).version;

writeFileSync(versionFilePath, `export const version = '${packageVersion}'\n`);
writeFileSync(versionFilePath, `export const version = '${packageVersion}';\n`);
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const version = '0.2.0';
export const version = '0.2.1';
2 changes: 1 addition & 1 deletion vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default defineConfig({
},
coverage: {
exclude: [
'src/test/**',
'src/_test/**',
'src/**/*.test.ts',
'src/**/*.integration.ts',
'src/**/index.ts',
Expand Down

1 comment on commit 2a505d0

@vercel
Copy link

@vercel vercel bot commented on 2a505d0 Oct 2, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

hopfield-next-13-openai – ./examples/next-13-openai

hopfield-next-13-openai-git-main-propology.vercel.app
hopfield-next-13-openai.vercel.app
hopfield-next-13-openai-propology.vercel.app
next-13.hopfield.ai

Please sign in to comment.