|
3 | 3 |
|
4 | 4 | |
5 | 5 | [](https://github.com/jaredlll08/searchables/issues) |
6 | | -[](https://github.com/jaredlll08/searchables/blob/1.21.5/LICENSE) |
7 | | -[](https://ci.blamejared.com/job/Jared/job/Minecraft%20Mods/job/Searchables/job/1.21.5/) |
| 6 | +[](https://github.com/jaredlll08/searchables/blob/1.21.8/LICENSE) |
| 7 | +[](https://ci.blamejared.com/job/Jared/job/Minecraft%20Mods/job/Searchables/job/1.21.8/) |
8 | 8 | [](https://discord.blamejared.com/) |
9 | 9 | [](https://minecraft.curseforge.com/projects/searchables) |
10 | 10 |
|
@@ -108,7 +108,7 @@ If you're running into a bug or have a feature request, please don't be afraid t |
108 | 108 |
|
109 | 109 | ## License |
110 | 110 |
|
111 | | -Distributed under the MIT License. See the [LICENSE](https://github.com/jaredlll08/searchables/blob/1.21.5/LICENSE) file for more information. |
| 111 | +Distributed under the MIT License. See the [LICENSE](https://github.com/jaredlll08/searchables/blob/1.21.8/LICENSE) file for more information. |
112 | 112 |
|
113 | 113 | ## Setup |
114 | 114 |
|
@@ -144,35 +144,35 @@ repositories { |
144 | 144 |
|
145 | 145 | Then, depending on what modloader you are using, you can use the following snippets, just replace `[VERSION]` with the latest version for each artifact. |
146 | 146 |
|
147 | | -### Fabric [](https://maven.blamejared.com/com/blamejared/searchables/Searchables-fabric-1.21.5/) |
| 147 | +### Fabric [](https://maven.blamejared.com/com/blamejared/searchables/Searchables-fabric-1.21.8/) |
148 | 148 |
|
149 | 149 | ```kotlin |
150 | 150 | dependencies { |
151 | | - modImplementation("com.blamejared.searchables:Searchables-fabric-1.21.5:[VERSION]") |
| 151 | + modImplementation("com.blamejared.searchables:Searchables-fabric-1.21.8:[VERSION]") |
152 | 152 | // Example: |
153 | | - // modImplementation("com.blamejared.searchables:Searchables-fabric-1.21.5:1.0.0") |
| 153 | + // modImplementation("com.blamejared.searchables:Searchables-fabric-1.21.8:1.0.0") |
154 | 154 | } |
155 | 155 | ``` |
156 | 156 |
|
157 | | -### Forge [](https://maven.blamejared.com/com/blamejared/searchables/Searchables-forge-1.21.5/) |
| 157 | +### Forge [](https://maven.blamejared.com/com/blamejared/searchables/Searchables-forge-1.21.8/) |
158 | 158 |
|
159 | 159 |
|
160 | 160 | ```kotlin |
161 | 161 | dependencies { |
162 | | - compileOnly(fg.deobf("com.blamejared.searchables:Searchables-forge-1.21.5:[VERSION]")) |
| 162 | + compileOnly(fg.deobf("com.blamejared.searchables:Searchables-forge-1.21.8:[VERSION]")) |
163 | 163 | // Example: |
164 | | - // implementation(fg.deobf("com.blamejared.searchables:Searchables-forge-1.21.5:1.0.0")) |
| 164 | + // implementation(fg.deobf("com.blamejared.searchables:Searchables-forge-1.21.8:1.0.0")) |
165 | 165 | } |
166 | 166 | ``` |
167 | 167 |
|
168 | | -### Common [](https://maven.blamejared.com/com/blamejared/searchables/Searchables-common-1.21.5/) |
| 168 | +### Common [](https://maven.blamejared.com/com/blamejared/searchables/Searchables-common-1.21.8/) |
169 | 169 |
|
170 | 170 | If you are in a multi-modloader environment (Such as [MultiLoader](https://github.com/jaredlll08/MultiLoader-Template)), you can bring the Common artifact (code that does not depend on any specific mod loader but rather just the vanilla game) into your Common project like so: |
171 | 171 |
|
172 | 172 | ```kotlin |
173 | 173 | dependencies { |
174 | | - compileOnly("com.blamejared.searchables:Searchables-common-1.21.5:[VERSION]") |
| 174 | + compileOnly("com.blamejared.searchables:Searchables-common-1.21.8:[VERSION]") |
175 | 175 | // Example: |
176 | | - // compileOnly("com.blamejared.searchables:Searchables-common-1.21.5:1.0.0") |
| 176 | + // compileOnly("com.blamejared.searchables:Searchables-common-1.21.8:1.0.0") |
177 | 177 | } |
178 | 178 | ``` |
0 commit comments