You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/pull_request_template.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@ Thanks for submitting a pull request! Please ensure that you have based your cod
2
2
3
3
- The current stable release branch for bugfixes of limited scope
4
4
- The upcoming [minor](https://semver.org) release branch for backwards compatible changes to existing functionality or addition of new functionality
5
-
-`master` for significant changes to existing behavior
5
+
-`3.x` for significant changes to existing behavior
6
6
7
7
If you're unsure which branch to use, open an [issue](https://github.com/FasterXML/jackson-module-kotlin/issues) and ask, we're happy to talk over proposed changes.
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -190,7 +190,7 @@ when(root){
190
190
# Configuration
191
191
192
192
The Kotlin module may be given a few configuration parameters at construction time;
193
-
see the [inline documentation](https://github.com/FasterXML/jackson-module-kotlin/blob/master/src/main/kotlin/tools/jackson/module/kotlin/KotlinModule.kt)
193
+
see the [inline documentation](https://github.com/FasterXML/jackson-module-kotlin/blob/3.x/src/main/kotlin/tools/jackson/module/kotlin/KotlinModule.kt)
194
194
for details on what options are available and what they do.
195
195
196
196
```kotlin
@@ -247,7 +247,7 @@ across all Jackson components & modules. See the [jackson-databind README](https
247
247
248
248
We welcome any contributions—reports of issues, ideas for enhancements, and pull requests related to either of those.
249
249
250
-
See the [main Jackson contribution guidelines](https://github.com/FasterXML/jackson/blob/master/CONTRIBUTING.md) for more details.
250
+
See the [main Jackson contribution guidelines](https://github.com/FasterXML/jackson/blob/3.x/CONTRIBUTING.md) for more details.
251
251
252
252
### Branches
253
253
@@ -259,11 +259,11 @@ If you are going to write code, choose the appropriate base branch:
259
259
260
260
### Failing tests
261
261
262
-
There are a number of tests for functionality that is broken, mostly in the [failing](https://github.com/FasterXML/jackson-module-kotlin/tree/master/src/test/kotlin/com/fasterxml/jackson/module/kotlin/test/github/failing)
262
+
There are a number of tests for functionality that is broken, mostly in the [failing](https://github.com/FasterXML/jackson-module-kotlin/tree/3.x/src/test/kotlin/com/fasterxml/jackson/module/kotlin/test/github/failing)
263
263
package but a few as part of other test suites. Instead of ignoring these tests (with JUnit's `@Ignore` annotation)
264
264
or excluding them from being run as part of automated testing, the tests are written to demonstrate the failure
265
265
(either making a call that throws an exception or with an assertion that fails) but not fail the build, except if the
266
266
underlying issue is fixed. This allows us to know when the tested functionality has been incidentally fixed by
267
267
unrelated code changes.
268
268
269
-
See the [tests readme](https://github.com/FasterXML/jackson-module-kotlin/tree/master/src/test/kotlin/com/fasterxml/jackson/module/kotlin/README.md) for more information.
269
+
See the [tests readme](https://github.com/FasterXML/jackson-module-kotlin/tree/3.x/src/test/kotlin/com/fasterxml/jackson/module/kotlin/README.md) for more information.
0 commit comments