Skip to content

Commit

Permalink
Version Packages (#233)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored May 7, 2024
1 parent f71ff87 commit bc5643b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
5 changes: 0 additions & 5 deletions .changeset/tasty-baboons-battle.md

This file was deleted.

11 changes: 10 additions & 1 deletion apps/ghost-blog-buster/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @ts-ghost/ghost-blog-buster

## 0.6.16

### Patch Changes

- f71ff87: fix connection to ghost instances deployed on custom ports

## 0.6.15

### Patch Changes
Expand Down Expand Up @@ -197,7 +203,10 @@
- The `members` resource now have a `add` and `edit` method that allow them to be created and updated.
```ts
const createNewMember = await api.members.add({ email: "[email protected]" }, { send_email: true });
const createNewMember = await api.members.add(
{ email: "[email protected]" },
{ send_email: true },
);
assert(createNewMember.success);
const newMember = createNewMember.data;
// id => 6438cc365a8fdb00013a8783
Expand Down
2 changes: 1 addition & 1 deletion apps/ghost-blog-buster/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"type": "git",
"url": "https://github.com/PhilDL/ts-ghost/tree/main/apps/ghost-blog-buster"
},
"version": "0.6.15",
"version": "0.6.16",
"main": "./dist/cli.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
Expand Down

0 comments on commit bc5643b

Please sign in to comment.