Skip to content

Commit

Permalink
Bump version number to 0.2.0
Browse files Browse the repository at this point in the history
Update copyright dates for updated files.
  • Loading branch information
plucia-mitre committed Sep 9, 2024
1 parent 2c029f5 commit 987f1b7
Show file tree
Hide file tree
Showing 23 changed files with 37 additions and 30 deletions.
8 changes: 4 additions & 4 deletions search/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion search/pclib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "pclib"
authors = ["Peter <[email protected]>"]
version = "0.1.0"
version = "0.2.0"
edition = "2018"
license-file = "LICENSE.txt"

Expand Down
2 changes: 1 addition & 1 deletion search/pcviz/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "viz"
version = "0.1.0"
version = "0.2.0"
authors = ["Peter <[email protected]>"]
edition = "2018"
license-file = "LICENSE.txt"
Expand Down
6 changes: 3 additions & 3 deletions search/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ requires = ["setuptools", "wheel", "setuptools-rust"]

[tool.poetry]
name = "pickled_canary"
version = "0.1.0"
version = "0.2.0"
description = ""
authors = ["The MITRE Corporation"]

[tool.poetry.dependencies]
pytest = {version = "^7.1.2", python = ">=3.7"}
pytest = { version = "^7.1.2", python = ">=3.7" }

[tool.poetry.dev-dependencies]
black = {version = "^22.6.0", python = ">=3.6.2"}
black = { version = "^22.6.0", python = ">=3.6.2" }
2 changes: 1 addition & 1 deletion search/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name="Pickled-Canary",
version="0.1.0",
version="0.2.0",
rust_extensions=[RustExtension("pickled_canary.pickled_canary_lib", binding=Binding.NoBinding, path="pclib/Cargo.toml")],
packages=["pickled_canary"],
# rust extensions are not zip safe, just like C-extensions.
Expand Down
2 changes: 1 addition & 1 deletion search/treesearchlib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "treesearchlib"
version = "0.1.0"
version = "0.2.0"
authors = ["Peter <[email protected]>"]
edition = "2018"
license-file = "LICENSE.txt"
Expand Down
8 changes: 4 additions & 4 deletions search/treesearchtool/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "treesearchtool"
version = "0.1.0"
version = "0.2.0"
authors = ["Peter <[email protected]>"]
edition = "2018"
license-file = "LICENSE.txt"
Expand All @@ -14,12 +14,12 @@ serde_json = "1.0"
bitvec = "~1.0"
cli-table = "0.4.6"
csv = "1.1.6"
walkdir ="2"
walkdir = "2"
rayon = "1.5"
serde = { version = "1.0", features = ["derive"]}
serde = { version = "1.0", features = ["derive"] }
memmap2 = "0.7.0"
clap = { version = "4.3.10", features = ["derive"] }

[dev-dependencies]
rand = "0.8.4"
lazy_static = "1.4.0"
lazy_static = "1.4.0"
2 changes: 1 addition & 1 deletion src/main/java/org/mitre/pickledcanary/PickledCanary.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

// Copyright (C) 2023 The MITRE Corporation All Rights Reserved
// Copyright (C) 2024 The MITRE Corporation All Rights Reserved

package org.mitre.pickledcanary;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@

// Copyright (C) 2024 The MITRE Corporation All Rights Reserved

package org.mitre.pickledcanary.patterngenerator;

import ghidra.app.plugin.assembler.AssemblySelector;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

// Copyright (C) 2023 The MITRE Corporation All Rights Reserved
// Copyright (C) 2024 The MITRE Corporation All Rights Reserved

package org.mitre.pickledcanary.patterngenerator.output.steps;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2023 The MITRE Corporation All Rights Reserved
// Copyright (C) 2024 The MITRE Corporation All Rights Reserved

package org.mitre.pickledcanary.patterngenerator.output.utils;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@

/*
* ### IP: GHIDRA REVIEWED: YES
/* ###
* IP: GHIDRA
* REVIEWED: YES
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

// Copyright (C) 2023 The MITRE Corporation All Rights Reserved
// Copyright (C) 2024 The MITRE Corporation All Rights Reserved

package org.mitre.pickledcanary;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

// Copyright (C) 2023 The MITRE Corporation All Rights Reserved
// Copyright (C) 2024 The MITRE Corporation All Rights Reserved

package org.mitre.pickledcanary;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

// Copyright (C) 2023 The MITRE Corporation All Rights Reserved
// Copyright (C) 2024 The MITRE Corporation All Rights Reserved

package org.mitre.pickledcanary;

Expand Down
2 changes: 1 addition & 1 deletion src/test/java/org/mitre/pickledcanary/BitArrayTest.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

// Copyright (C) 2023 The MITRE Corporation All Rights Reserved
// Copyright (C) 2024 The MITRE Corporation All Rights Reserved

package org.mitre.pickledcanary;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

// Copyright (C) 2023 The MITRE Corporation All Rights Reserved
// Copyright (C) 2024 The MITRE Corporation All Rights Reserved

package org.mitre.pickledcanary;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

// Copyright (C) 2023 The MITRE Corporation All Rights Reserved
// Copyright (C) 2024 The MITRE Corporation All Rights Reserved

package org.mitre.pickledcanary;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

// Copyright (C) 2023 The MITRE Corporation All Rights Reserved
// Copyright (C) 2024 The MITRE Corporation All Rights Reserved

package org.mitre.pickledcanary;

Expand Down
3 changes: 3 additions & 0 deletions src/test/java/org/mitre/pickledcanary/SearchBenchmark.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@

// Copyright (C) 2024 The MITRE Corporation All Rights Reserved

package org.mitre.pickledcanary;

import java.util.List;
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/org/mitre/pickledcanary/SearchTest.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2023 The MITRE Corporation All Rights Reserved
// Copyright (C) 2024 The MITRE Corporation All Rights Reserved

package org.mitre.pickledcanary;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

// Copyright (C) 2023 The MITRE Corporation All Rights Reserved
// Copyright (C) 2024 The MITRE Corporation All Rights Reserved

package org.mitre.pickledcanary;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

// Copyright (C) 2023 The MITRE Corporation All Rights Reserved
// Copyright (C) 2024 The MITRE Corporation All Rights Reserved

package org.mitre.pickledcanary;

Expand Down

0 comments on commit 987f1b7

Please sign in to comment.