Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(def i18n-version "1.0.4")

(defproject org.openvoxproject/jruby-utils "5.5.1-SNAPSHOT"
(defproject org.openvoxproject/jruby-utils "6.0.0-SNAPSHOT"
:description "A library for working with JRuby"
:url "https://github.com/openvoxproject/jruby-utils"
:license {:name "Apache License, Version 2.0"
Expand Down
14 changes: 12 additions & 2 deletions renovate.jsonc
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"baseBranchPatterns": ["main", "5.x"],
"addLabels": ["renovate", "dependencies"],
"assigneesFromCodeOwners": true,
"automerge": true,
Expand All @@ -10,11 +11,20 @@
"platformAutomerge": true,

"packageRules": [
// Lock jruby-deps to the 9.4 release series. Moving to 10.0 will
// be a major version change.
// Lock JRuby to the 10.0 release series for the main branch.
{
"groupName": "jruby updates",
"allowedVersions": "<10.1",
"matchPackageNames": [
"org.openvoxproject:jruby-deps"
]
},

// Lock JRuby to the 9.4 release series for the 5.x branch.
{
"groupName": "jruby updates",
"allowedVersions": "<10.0",
"matchBaseBranches": "5.x",
"matchPackageNames": [
"org.openvoxproject:jruby-deps"
]
Expand Down