Skip to content

Commit

Permalink
Add v17.x to statistics
Browse files Browse the repository at this point in the history
  • Loading branch information
bkimminich committed Aug 5, 2024
1 parent 4adec67 commit f10dcd8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions extractors/github.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,12 @@ const fetchData = () => {

const data = []
const dates = Object.getOwnPropertyNames(githubDataJs)
const releases = ['v9', 'v10', 'v11', 'v12', 'v13', 'v14', 'v15', 'v16']
const releases = ['v9', 'v10', 'v11', 'v12', 'v13', 'v14', 'v15', 'v16', 'v17']
data.push(releases)

for (const date of dates) {
const downloadsPerReleaseByDay = [date]
const downloadsPerRelease = { v9: 0, v10: 0, v11: 0, v12: 0, v13: 0, v14: 0, v15: 0, v16: 0 }
const downloadsPerRelease = { v9: 0, v10: 0, v11: 0, v12: 0, v13: 0, v14: 0, v15: 0, v16: 0, v17: 0 }
for (const release of releases) {
for (const data of githubDataJs[date]) {
if (data[0].startsWith(release)) {
Expand Down

0 comments on commit f10dcd8

Please sign in to comment.