Skip to content

Commit

Permalink
Make addDependency public and bump version to 1.2.1 (#8)
Browse files Browse the repository at this point in the history
* Make addDependency public

* Bump version
  • Loading branch information
Username404-59 authored May 8, 2021
1 parent ddabb55 commit f9cf948
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
org.gradle.daemon=false

project_version=1.2.0
project_version=1.2.1
group=com.modrinth.minotaur
archivesBaseName=Minotaur
vendor=Modrinth
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ public void addLoader (String loader) {
* @param versionId The version to add a dependency with.
* @param type The type of dependency to add.
*/
private void addDependency(String versionId, Dependency.DependencyType type) {
public void addDependency(String versionId, Dependency.DependencyType type) {

this.dependencies.add(new Dependency(versionId, type));
this.getLogger().debug("Added {} dependency with version ID {}.", type, versionId);
Expand Down

0 comments on commit f9cf948

Please sign in to comment.