Skip to content

Commit 21356d8

Browse files
authored
chore: release v1.0.0 (#61)
1 parent bcff5de commit 21356d8

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
## Description
2828

29-
This is an implementation of an [MCP (Model Context Protocol) Server](https://modelcontextprotocol.io/quickstart/server) to allow different LLMs to query information from Sysdig Secure platform. **It is still in early development and not yet ready for production use.** New endpoints and functionalities will be added over time. The goal is to provide a simple and easy-to-use interface for querying information from Sysdig Secure platform using LLMs.
29+
This is an implementation of an [MCP (Model Context Protocol) Server](https://modelcontextprotocol.io/quickstart/server) to allow different LLMs to query information from Sysdig Secure platform. New tools and functionalities will be added over time following semantic versioning. The goal is to provide a simple and easy-to-use interface for querying information from Sysdig Secure platform using LLMs.
3030

3131
## Quickstart Guide
3232

docs/RELEASING.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ The guidelines to follow would be:
99
* CI/Refactorings/Internal changes -> No need to release new version.
1010
* Documentation changes -> No need to release new version.
1111

12-
The current version of the project is not stable yet, so you need to follow the [Semver spec](https://semver.org/spec/v2.0.0.html), with the following guidelines:
12+
The project follows the [Semver spec](https://semver.org/spec/v2.0.0.html) with these guidelines:
1313

14-
* Unless specified, do not attempt to stabilize the version. That is, do not try to update the version to >=1.0.0. Versions for now should be <1.0.0.
15-
* For minor changes, update only the Y in 0.X.Y. For example: 0.5.2 -> 0.5.3
16-
* For major/feature changes, update the X in 0.X.Y and set the Y to 0. For example: 0.5.2 -> 0.6.0
17-
* Before choosing if the changes are minor or major, check all the commits since the last tag.
14+
* **MAJOR (X.0.0)**: Breaking changes that are not backward compatible.
15+
* **MINOR (1.X.0)**: New functionality that is backward compatible.
16+
* **PATCH (1.0.X)**: Bug fixes that are backward compatible.
17+
* Before choosing the version bump, check all the commits since the last tag.
1818

1919
After the commit is merged into the default branch the workflow will cross-compile the project and create a GitHub release of that version.
2020
Check the workflow file in case of doubt.

package.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{ buildGoModule, versionCheckHook }:
22
buildGoModule (finalAttrs: {
33
pname = "sysdig-mcp-server";
4-
version = "0.6.1";
4+
version = "1.0.0";
55
src = ./.;
66
# This hash is automatically re-calculated with `just rehash-package-nix`. This is automatically called as well by `just update`.
77
vendorHash = "sha256-qMgFlDqzmtpxNOFCX9TsE4sjz0ZdvTJ5Q5IpA8lzG8g=";

0 commit comments

Comments
 (0)