parent
fae015496c
commit
c62ddccfec
|
@ -2,7 +2,10 @@
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
<!-- Please add new entries to the _top_ of this section. -->
|
<!-- Please add new entries just beneath this line. -->
|
||||||
|
|
||||||
|
## [0.4.0]
|
||||||
|
|
||||||
- Enable viewing cred over time for GitHub repos (#1268)
|
- Enable viewing cred over time for GitHub repos (#1268)
|
||||||
- Remove unused CLI commands (`pagerank` and `analyze`) (#1254)
|
- Remove unused CLI commands (`pagerank` and `analyze`) (#1254)
|
||||||
- Track cred on the project level, not the repo level (#1233)
|
- Track cred on the project level, not the repo level (#1233)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "sourcecred",
|
"name": "sourcecred",
|
||||||
"version": "0.3.0",
|
"version": "0.4.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"aphrodite": "^2.1.0",
|
"aphrodite": "^2.1.0",
|
||||||
|
|
|
@ -60,7 +60,7 @@ const environment = parseEnvironment(process.env.NODE_ENV);
|
||||||
|
|
||||||
export const VERSION_INFO: VersionInfo = deepFreeze({
|
export const VERSION_INFO: VersionInfo = deepFreeze({
|
||||||
major: 0,
|
major: 0,
|
||||||
minor: 3,
|
minor: 4,
|
||||||
patch: 0,
|
patch: 0,
|
||||||
gitState,
|
gitState,
|
||||||
environment,
|
environment,
|
||||||
|
|
Loading…
Reference in New Issue