From b4af3fd73609bfd6ddb979ac2aa6023dc730f3bd Mon Sep 17 00:00:00 2001
From: Anil Mahtani <929854+Anilm3@users.noreply.github.com>
Date: Wed, 6 Dec 2023 17:02:33 +0000
Subject: [PATCH 1/2] Bump version to 0.95.0
---
Cargo.lock | 2 +-
appsec/CMakeLists.txt | 2 +-
ext/version.h | 2 +-
package.xml | 49 +++++++++++++++++++++---------------------
profiling/Cargo.toml | 2 +-
src/DDTrace/Tracer.php | 2 +-
6 files changed, 29 insertions(+), 30 deletions(-)
diff --git a/Cargo.lock b/Cargo.lock
index 8b35ccc140..9635d9e8d5 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -678,7 +678,7 @@ dependencies = [
[[package]]
name = "datadog-php-profiling"
-version = "0.94.0"
+version = "0.95.0"
dependencies = [
"ahash 0.8.3",
"anyhow",
diff --git a/appsec/CMakeLists.txt b/appsec/CMakeLists.txt
index 0b19037650..5c7d8485c0 100644
--- a/appsec/CMakeLists.txt
+++ b/appsec/CMakeLists.txt
@@ -11,7 +11,7 @@ HunterGate(
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/hunter-cache.id.in ${CMAKE_CURRENT_SOURCE_DIR}/hunter-cache.id)
-project(ddappsec VERSION 0.94.0)
+project(ddappsec VERSION 0.95.0)
include(CheckCXXCompilerFlag)
diff --git a/ext/version.h b/ext/version.h
index 5e93e716c7..2553efeefe 100644
--- a/ext/version.h
+++ b/ext/version.h
@@ -1,4 +1,4 @@
#ifndef PHP_DDTRACE_VERSION
// Must begin with a number for Debian packaging requirements
-#define PHP_DDTRACE_VERSION "0.94.0"
+#define PHP_DDTRACE_VERSION "0.95.0"
#endif
diff --git a/package.xml b/package.xml
index 1892154b29..caeb779e13 100644
--- a/package.xml
+++ b/package.xml
@@ -62,43 +62,42 @@
BSD 3-Clause
diff --git a/profiling/Cargo.toml b/profiling/Cargo.toml
index 24881ad25e..983fce030c 100644
--- a/profiling/Cargo.toml
+++ b/profiling/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "datadog-php-profiling"
-version = "0.94.0"
+version = "0.95.0"
edition = "2021"
license = "Apache-2.0"
rust-version = "1.64"
diff --git a/src/DDTrace/Tracer.php b/src/DDTrace/Tracer.php
index 9d4c70268d..3e782b12e9 100644
--- a/src/DDTrace/Tracer.php
+++ b/src/DDTrace/Tracer.php
@@ -24,7 +24,7 @@ final class Tracer implements TracerInterface
* Must begin with a number for Debian packaging requirements
* Must use single-quotes for packaging script to work
*/
- const VERSION = '0.94.0';
+ const VERSION = '0.95.0';
/**
* @var Span[][]
From 61d26a0b28001b3bfc8e237946081ba2ac6fe363 Mon Sep 17 00:00:00 2001
From: Anil Mahtani <929854+Anilm3@users.noreply.github.com>
Date: Wed, 6 Dec 2023 17:18:37 +0000
Subject: [PATCH 2/2] Update package.xml
---
package.xml | 3 ---
1 file changed, 3 deletions(-)
diff --git a/package.xml b/package.xml
index caeb779e13..3991619231 100644
--- a/package.xml
+++ b/package.xml
@@ -80,9 +80,6 @@ This release introduces support for arm64 and PHP 8.3 for appsec. Additionally,
- Add macrobenchmark runs #2408
## Profiling
-### Fixed
-- Potential allocation profiling crashes with certain opcodes #2352
-
### Internal changes
- add allocation and exception count to event.json #2392