Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# NEXT

# 1.1.0 - 23rd January 2025

- add OCSF schema support

# 1.0.2 - 16th July 2024

- fix string escaping when generating markdown
Expand Down
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,20 @@ of via the bulk export:
(flanders.malli/->malli (ocsf/->flanders (get-in ocsf-1-3-0-export ["objects" "authorization"]))))
```

## Releasing

To release flanders `x.y.z`:

1. Create a new feature branch.
2. Update `CHANGES.md` for the upcoming version.
3. Change the project.clj version to `x.y.z-SNAPSHOT`.
4. Commit changes.
5. Run `lein deploy clojars` to deploy a snapshot to test your credentials.
6. If that works, run `lein release` to release a new version.
7. Open a PR for your branch.
8. You must merge your PR using a merge commit, not squash.
9. Once merged, double check the git tag `x.y.z` is present.

## License

Copyright © 2016-2025 Cisco Systems
Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject threatgrid/flanders "1.0.3-SNAPSHOT"
(defproject threatgrid/flanders "1.1.1-SNAPSHOT"
:description "flanders"
:url "http://github.com/threatgrid/flanders"
:license {:name "Eclipse Public License"
Expand Down
Loading