Skip to content

Commit

Permalink
[ci] release
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Feb 24, 2024
1 parent f1b793f commit 69dd67d
Show file tree
Hide file tree
Showing 10 changed files with 39 additions and 13 deletions.
8 changes: 0 additions & 8 deletions .changeset/big-kiwis-sip.md

This file was deleted.

10 changes: 10 additions & 0 deletions packages/adapters/astro/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @galactiks/astro-integration

## 0.3.1

### Patch Changes

- [#166](https://github.com/thegalactiks/explorer/pull/166) [`f1b793f`](https://github.com/thegalactiks/explorer/commit/f1b793f99c4924c5919db6ba2de06f2e98130971) Thanks [@emmanuelgautier](https://github.com/emmanuelgautier)! - upgrade depends and make various fixes

- Updated dependencies [[`f1b793f`](https://github.com/thegalactiks/explorer/commit/f1b793f99c4924c5919db6ba2de06f2e98130971)]:
- @galactiks/config@0.3.1
- @galactiks/explorer@0.3.1

## 0.3.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/adapters/astro/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@galactiks/astro-integration",
"version": "0.3.0",
"version": "0.3.1",
"description": "Galactiks Astro integration",
"author": "thegalactiks",
"type": "module",
Expand Down
6 changes: 6 additions & 0 deletions packages/config/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @galactiks/config

## 0.3.1

### Patch Changes

- [#166](https://github.com/thegalactiks/explorer/pull/166) [`f1b793f`](https://github.com/thegalactiks/explorer/commit/f1b793f99c4924c5919db6ba2de06f2e98130971) Thanks [@emmanuelgautier](https://github.com/emmanuelgautier)! - upgrade depends and make various fixes

## 0.3.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@galactiks/config",
"version": "0.3.0",
"version": "0.3.1",
"description": "Reading Galactiks configurations files and get config during website generation",
"author": "thegalactiks",
"type": "module",
Expand Down
6 changes: 6 additions & 0 deletions packages/contentlayer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @galactiks/contentlayer

## 0.2.1

### Patch Changes

- [#166](https://github.com/thegalactiks/explorer/pull/166) [`f1b793f`](https://github.com/thegalactiks/explorer/commit/f1b793f99c4924c5919db6ba2de06f2e98130971) Thanks [@emmanuelgautier](https://github.com/emmanuelgautier)! - upgrade depends and make various fixes

## 0.2.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/contentlayer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@galactiks/contentlayer",
"version": "0.2.0",
"version": "0.2.1",
"description": "Galactiks contentlayer configurations",
"author": "galactiks",
"type": "module",
Expand Down
10 changes: 10 additions & 0 deletions packages/explorer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @galactiks/explorer

## 0.3.1

### Patch Changes

- [#166](https://github.com/thegalactiks/explorer/pull/166) [`f1b793f`](https://github.com/thegalactiks/explorer/commit/f1b793f99c4924c5919db6ba2de06f2e98130971) Thanks [@emmanuelgautier](https://github.com/emmanuelgautier)! - upgrade depends and make various fixes

- Updated dependencies [[`f1b793f`](https://github.com/thegalactiks/explorer/commit/f1b793f99c4924c5919db6ba2de06f2e98130971)]:
- @galactiks/config@0.3.1
- @galactiks/contentlayer@0.2.1

## 0.3.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/explorer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@galactiks/explorer",
"version": "0.3.0",
"version": "0.3.1",
"description": "Ensure Galactiks content model consistence, explore content built with ContentLayer and create dynamically missing pages and fields for SEO purposes",
"author": "thegalactiks",
"type": "module",
Expand Down
4 changes: 3 additions & 1 deletion packages/explorer/src/content/hydrate/listing-pages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,9 @@ export const computeRemainingListingPages =
_k &&
acc.some(
(_a) =>
_a.type === 'Tag' && _a.identifier === _k && isInLanguage(_a, _d.inLanguage)
_a.type === 'Tag' &&
_a.identifier === _k &&
isInLanguage(_a, _d.inLanguage)
) === false
)
.map((_k) =>
Expand Down

0 comments on commit 69dd67d

Please sign in to comment.