Skip to content

Commit

Permalink
Increase version to 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Warxim committed Oct 1, 2023
1 parent f61f5d6 commit d48a697
Show file tree
Hide file tree
Showing 6 changed files with 55 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Shell scripts require LF
*.sh text eol=lf

# Batch scripts require CRLF
*.bat text eol=crlf
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

All notable changes to this project will are documented in this changelog file.

## Unreleased
## [2.2.0] - 2023-10-01
### Added
- A bit more convenient Hex Editor (smart backspace/delete, support undo/redo, support keeping selection between tabs)
- Use working directory for petep.json file
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/warxim/petep/common/Constant.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
@PetepAPI
public final class Constant {
// PETEP version
public static final String VERSION = "2.1.0";
public static final String VERSION = "2.2.0";

// PETEP web
public static final String WEB = "https://petep.warxim.com/";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/*
* PEnetration TEsting Proxy (PETEP)
*
* Copyright (C) 2023 Michal Válka
*
* This program is free software: you can redistribute it and/or modify it under the terms of the
* GNU General Public License as published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
* even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with this program. If
* not, see <https://www.gnu.org/licenses/>.
*/
package com.warxim.petep.gui.control.byteseditor;

import com.warxim.petep.extension.PetepAPI;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/*
* PEnetration TEsting Proxy (PETEP)
*
* Copyright (C) 2023 Michal Válka
*
* This program is free software: you can redistribute it and/or modify it under the terms of the
* GNU General Public License as published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
* even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with this program. If
* not, see <https://www.gnu.org/licenses/>.
*/
package com.warxim.petep.gui.control.byteseditor;

import com.warxim.petep.extension.PetepAPI;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/*
* PEnetration TEsting Proxy (PETEP)
*
* Copyright (C) 2023 Michal Válka
*
* This program is free software: you can redistribute it and/or modify it under the terms of the
* GNU General Public License as published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
* even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with this program. If
* not, see <https://www.gnu.org/licenses/>.
*/
package com.warxim.petep.gui.control.byteseditor;

import com.warxim.petep.common.Constant;
Expand Down

0 comments on commit d48a697

Please sign in to comment.