Skip to content

Commit

Permalink
Update github.server.js
Browse files Browse the repository at this point in the history
  • Loading branch information
mjovanc authored May 27, 2024
1 parent dbbf709 commit 7cc2cd3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/server/github.server.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export async function getRepoStats() {
let commits = await getCommits();
let contributors = await getContributors();
let stargazers = { stars, path: repoPath + "/stargazers " };
let latestVersion = { version: "0.2.1", path: repoPath + "/releases" };
let latestVersion = { version: "0.3.0-alpha", path: repoPath + "/releases" };
let latestCommit = {
path: repoPath + "/commit/" + commits[0].sha,
date: getShortdate(new Date(commits[0].commit.author.date)),
Expand Down Expand Up @@ -66,4 +66,4 @@ async function getContributors() {
console.error(error);
}
return [];
}
}

0 comments on commit 7cc2cd3

Please sign in to comment.