Skip to content

Commit

Permalink
[ci] release (#154)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fryuni committed Aug 27, 2024
1 parent 666543e commit 125d732
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
5 changes: 0 additions & 5 deletions .changeset/hip-games-taste.md

This file was deleted.

6 changes: 6 additions & 0 deletions packages/content-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @inox-tools/content-utils

## 0.7.0

### Minor Changes

- 666543e: Allow retrieving the Git authors and co-authors of Content Collection Entries

## 0.6.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/content-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@inox-tools/content-utils",
"version": "0.6.1",
"version": "0.7.0",
"description": "Utilities to work with content collections on an Astro project from an integration or library.",
"keywords": [
"lifecycle",
Expand Down
8 changes: 4 additions & 4 deletions packages/content-utils/src/integration/gitPlugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ export async function getEntryGitInfo(...args) {
const latestCommits = new Map([
${trackedFiles
.map(([file, fileInfo]) => `[${JSON.stringify(file)}, new Date(${fileInfo.latest.valueOf()})]`)
.join(',')}
.map(([file, fileInfo]) => `[${JSON.stringify(file)}, new Date(${fileInfo.latest.valueOf()})]`)
.join(',')}
]);
export async function getLatestCommitDate(...args) {
Expand All @@ -83,8 +83,8 @@ export async function getLatestCommitDate(...args) {
const oldestCommits = new Map([
${trackedFiles
.map(([file, fileInfo]) => `[${JSON.stringify(file)}, new Date(${fileInfo.earliest.valueOf()})]`)
.join(',')}
.map(([file, fileInfo]) => `[${JSON.stringify(file)}, new Date(${fileInfo.earliest.valueOf()})]`)
.join(',')}
]);
export async function getOldestCommitDate(...args) {
Expand Down

0 comments on commit 125d732

Please sign in to comment.