Skip to content

Commit 51d0ee1

Browse files
committed
Set version to 4.0.0-rc
1 parent 5d68964 commit 51d0ee1

File tree

2 files changed

+21
-14
lines changed

2 files changed

+21
-14
lines changed

README.md

Lines changed: 19 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,6 @@ Currently, it allows to:
1111

1212
## Installation
1313

14-
### Installation via CF Community Repository
15-
16-
Make sure you have the CF Community plugin repository configured or add it via (```cf add-plugin-repo CF-Community http://plugins.cloudfoundry.org```)
17-
18-
Trigger installation of the plugin via
19-
```
20-
cf install-plugin -r CF-Community "java"
21-
```
22-
23-
The releases in the community repository might be older that the actual releases on GitHub, that you
24-
can install manually.
25-
2614
### Manual Installation
2715
Download the latest release from [GitHub](https://github.com/SAP/cf-cli-java-plugin/releases/latest).
2816

@@ -39,6 +27,18 @@ cf install-plugin -f https://github.com/SAP/cf-cli-java-plugin/releases/latest/d
3927

4028
You can verify that the plugin is successfully installed by looking for `java` in the output of `cf plugins`.
4129

30+
### Installation via CF Community Repository
31+
32+
Make sure you have the CF Community plugin repository configured or add it via (```cf add-plugin-repo CF-Community http://plugins.cloudfoundry.org```)
33+
34+
Trigger installation of the plugin via
35+
```
36+
cf install-plugin -r CF-Community "java"
37+
```
38+
39+
The releases in the community repository are older that the actual releases on GitHub, that you can install manually, so we recommend
40+
the manual installation.
41+
4242
### Manual Installation of Snapshot Release
4343

4444
Download the current snapshot release from [GitHub](https://github.com/SAP/cf-cli-java-plugin/releases/tag/snapshot).
@@ -302,6 +302,13 @@ If you find any bug that may be a security problem, please follow our instructio
302302
[in our security policy](https://github.com/SAP/cf-cli-java-plugin/security/policy) on how to report it.
303303
Please do not create GitHub issues for security-related doubts or problems.
304304

305+
## Changelog
306+
307+
### 4.0.0-rc
308+
309+
- Profiling and JCMD related features
310+
- Large refactoring
311+
305312
## License
306313
Copyright 2017 - 2025 SAP SE or an SAP affiliate company and contributors.
307314
Please see our LICENSE for copyright and license information.

cf_cli_java_plugin.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -652,9 +652,9 @@ func (c *JavaPlugin) GetMetadata() plugin.PluginMetadata {
652652
return plugin.PluginMetadata{
653653
Name: "java",
654654
Version: plugin.VersionType{
655-
Major: 3,
655+
Major: 4,
656656
Minor: 0,
657-
Build: 3,
657+
Build: 0,
658658
},
659659
MinCliVersion: plugin.VersionType{
660660
Major: 6,

0 commit comments

Comments
 (0)