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: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,7 @@
7
7
* Adds `Feign.Builder.build()`
8
8
* Opens constructor for Gson and Jackson codecs which accepts type adapters
9
9
* Adds EmptyTarget for interfaces who exclusively declare URI methods
10
+
* Reformats code according to [Google Java Style](https://google-styleguide.googlecode.com/svn/trunk/javaguide.html)
10
11
11
12
### Version 7.1
12
13
* Introduces feign.@Param to annotate template parameters. Users must migrate from `javax.inject.@Named` to `feign.@Param` before updating to Feign 8.0.
If you would like to contribute code you can do so through GitHub by forking the repository and sending a pull request (on a branch other than `master` or `gh-pages`).
4
+
5
+
When submitting code, please ensure you follow the [Google Style Guide](http://google-styleguide.googlecode.com/svn/trunk/javaguide.html). For example, you can format code with Intellij using [this file](https://google-styleguide.googlecode.com/svn/trunk/intellij-java-google-style.xml).
6
+
7
+
## License
8
+
9
+
By contributing your code, you agree to license your contribution under the terms of the APLv2: https://github.com/Netflix/Feign/blob/master/LICENSE
10
+
11
+
All files are released with the Apache 2.0 license.
12
+
13
+
If you are adding a new file it should have a header like this:
14
+
15
+
```
16
+
/**
17
+
* Copyright 2013 Netflix, Inc.
18
+
*
19
+
* Licensed under the Apache License, Version 2.0 (the "License");
20
+
* you may not use this file except in compliance with the License.
21
+
* You may obtain a copy of the License at
22
+
*
23
+
* http://www.apache.org/licenses/LICENSE-2.0
24
+
*
25
+
* Unless required by applicable law or agreed to in writing, software
26
+
* distributed under the License is distributed on an "AS IS" BASIS,
27
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
28
+
* See the License for the specific language governing permissions and
0 commit comments