From 2d16d2ca84a3dd4cca8e32fdfa3819bfa2a684a4 Mon Sep 17 00:00:00 2001 From: Daan Date: Fri, 30 May 2025 10:08:28 -0700 Subject: [PATCH] update azure pipeline trigger for the main branch (instead of master) --- azure-pipelines.yml | 6 ++---- readme.md | 7 +++---- 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index df608b17..d761d8c8 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -6,10 +6,8 @@ trigger: branches: include: - - master - - dev3 - - dev2 - - dev + - main + - dev* tags: include: - v* diff --git a/readme.md b/readme.md index fd97c28c..76e2711e 100644 --- a/readme.md +++ b/readme.md @@ -72,15 +72,14 @@ Enjoy! ### Branches -* `master`: latest stable release (still based on `dev2`). +* `main`: latest stable release (still based on `dev2`). * `dev`: development branch for mimalloc v1. **Use this branch for submitting PR's**. * `dev2`: development branch for mimalloc v2. This branch is downstream of `dev` (and is essentially equal to `dev` except for `src/segment.c`). Uses larger sliced segments to manage mimalloc pages that can reduce fragmentation. -* `dev3`: development branch for mimalloc v3-beta. This branch is downstream of `dev`. This version +* `dev3`: development branch for mimalloc v3-beta. This branch is also downstream of `dev`. This version simplifies the lock-free ownership of previous versions, has no thread-local segments any more. - This improves sharing of memory between threads, and on certain large workloads may use less memory - with less fragmentation. + This improves sharing of memory between threads, and on certain large workloads may use (much) less memory. ### Releases