Skip to content

Commit

Permalink
Bump minimum required Atom version to v1.25.0
Browse files Browse the repository at this point in the history
This ensures that future package releases will stay compatible with Atom
versions that support ES2017 features (notably trailing commas, which're
likely to be included as a matter-of-habit).

Refs: #753
  • Loading branch information
Alhadis committed Aug 14, 2018
1 parent b2f9f00 commit e04dfc7
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ This project adheres to [Semantic Versioning](http://semver.org/).
[Unpublished]: https://github.com/file-icons/atom/compare/v2.1.24...HEAD


[Unpublished]
----------------------
### Changed
- Increased minimum required Atom version to v1.25.0



[v2.1.24]
----------------------
### Fixed
Expand Down
4 changes: 2 additions & 2 deletions lib/service/icon-service.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class IconService{
Storage.deletePath(path);
}
}
})
}),
);
StrategyManager.init();
this.isReady = true;
Expand Down Expand Up @@ -103,7 +103,7 @@ class IconService{
return file && file.icon
? file.icon.getClasses() || null
: null;
}
},
};
}
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"homepage": "https://github.com/file-icons/atom",
"license": "MIT",
"engines": {
"atom": ">=1.23.1"
"atom": ">=1.25.0"
},
"atomTestRunner": "atom-mocha",
"dependencies": {
Expand Down

0 comments on commit e04dfc7

Please sign in to comment.