Skip to content

Commit 6e30e77

Browse files
authored
Merge pull request #1051 from owasp-noir/release/0.28.0
Release v0.28.0
2 parents 1f9b8b6 + 07b8658 commit 6e30e77

File tree

18 files changed

+25
-25
lines changed

18 files changed

+25
-25
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ If applicable, add screenshots to help explain your problem.
2323

2424
**Versions**
2525
- OS: [e.g. macos, linux]
26-
- Version [e.g. v0.27.1]
26+
- Version [e.g. v0.28.0]
2727

2828
**Additional context**
2929
Add any other context about the problem here.

AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ snap/ # Snap package configuration
191191
```
192192

193193
### Key Files
194-
- `shard.yml`: Dependencies and project metadata (current version: 0.27.1)
194+
- `shard.yml`: Dependencies and project metadata (current version: 0.28.0)
195195
- `justfile`: Task definitions and commands (build, test, check, fix, docs-serve, etc.)
196196
- `src/noir.cr`: Main application entry point
197197
- `src/options.cr`: CLI options and argument parsing

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ RUN apt-get update && \
2121
##= RUNNER =##
2222
FROM debian:13-slim
2323
LABEL org.opencontainers.image.title="OWASP Noir"
24-
LABEL org.opencontainers.image.version="0.27.1"
24+
LABEL org.opencontainers.image.version="0.28.0"
2525
LABEL org.opencontainers.image.description="Hunt every Endpoint in your code, expose Shadow APIs, map the Attack Surface."
2626
LABEL org.opencontainers.image.authors="Noir Team (@hahwul, @ksg97031)"
2727
LABEL org.opencontainers.image.source=https://github.com/owasp-noir/noir

docs/content/_index.ko.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
template = "landing.html"
33

44
[extra]
5-
version = "v0.27.1"
5+
version = "v0.28.0"
66

77
[extra.hero]
88
title = " "
9-
badge = "v0.27.1"
9+
badge = "v0.28.0"
1010
description = "코드베이스 내 모든 엔드포인트를 자동으로 탐지하는 고급 하이브리드 분석 도구. 섀도우 API와 문서화되지 않은 엔드포인트까지 놓치지 않고 찾아냅니다."
1111
image = "../images/noir-wallpaper.jpg"
1212
cta_buttons = [

docs/content/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
template = "landing.html"
33

44
[extra]
5-
version = "v0.27.1"
5+
version = "v0.28.0"
66

77
[extra.hero]
88
title = " "
9-
badge = "v0.27.1"
9+
badge = "v0.28.0"
1010
description = "Hunt every Endpoint in your code, expose Shadow APIs, map the Attack Surface."
1111
image = "./images/noir-wallpaper.jpg"
1212
cta_buttons = [

docs/content/development/how_to_release/index.ko.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Noir는 여러 채널을 통해 배포됩니다. 일부는 GitHub Actions를 통
4848

4949
```bash
5050
brew bump-formula-pr --strict --version <VERSION> noir
51-
# 예: brew bump-formula-pr --strict --version 0.27.1 noir
51+
# 예: brew bump-formula-pr --strict --version 0.28.0 noir
5252
```
5353

5454
3. **스타일 확인**: (선택사항) 변경 사항이 Homebrew의 스타일 가이드라인을 충족하는지 확인하려면 다음을 실행할 수 있습니다:

docs/content/development/how_to_release/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ To update the main Homebrew formula, you need to submit a pull request to the `h
4848

4949
```bash
5050
brew bump-formula-pr --strict --version <VERSION> noir
51-
# Example: brew bump-formula-pr --strict --version 0.27.1 noir
51+
# Example: brew bump-formula-pr --strict --version 0.28.0 noir
5252
```
5353

5454
3. **Style Check**: (Optional) To ensure your changes meet Homebrew's style guidelines, you can run:

docs/content/usage/output_formats/sarif/index.ko.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ noir -b . -f sarif -o results.sarif --no-log
4343
"tool": {
4444
"driver": {
4545
"name": "OWASP Noir",
46-
"version": "0.27.1",
46+
"version": "0.28.0",
4747
"informationUri": "https://github.com/owasp-noir/noir",
4848
"rules": [
4949
{

docs/content/usage/output_formats/sarif/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ noir -b . -f sarif -o results.sarif --no-log
4141
"tool": {
4242
"driver": {
4343
"name": "OWASP Noir",
44-
"version": "0.27.1",
44+
"version": "0.28.0",
4545
"informationUri": "https://github.com/owasp-noir/noir",
4646
"rules": [
4747
{

flake.nix

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

3434
noir = pkgs.crystal.buildCrystalPackage rec {
3535
pname = "noir";
36-
version = "0.27.1";
36+
version = "0.28.0";
3737

3838
src = ./.;
3939

0 commit comments

Comments
 (0)