We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 947ae1e commit 27d94c3Copy full SHA for 27d94c3
Statistics.hs
@@ -245,8 +245,10 @@ main = do
245
putStrLn $ "Most active:\n\t" ++ show (round (statMaxMetric allComments)) ++ " comments for " ++ show (issTitle (statMaxIssue allComments))
246
putStrLn ""
247
248
- forM_ [16 .. 21] $ \n ->
249
- putStrLn $ "Released in base-4." ++ show n ++ ": " ++ show (length (filter (isBase n) approvedProposals))
+ forM_ [0 .. 99] $ \n -> do
+ let releasedInVersion = length (filter (isBase n) approvedProposals)
250
+ when (releasedInVersion > 0) $
251
+ putStrLn $ "Released in base-4." ++ show n ++ ": " ++ show releasedInVersion
252
253
254
let openProposals = filter (isNothing . issClosedAt) proposals
0 commit comments