Skip to content

Commit f0e7091

Browse files
Merge branch 'main' into ci-fix-version
2 parents 2eb475e + 2124d86 commit f0e7091

File tree

3 files changed

+12
-11
lines changed

3 files changed

+12
-11
lines changed

.github/release-please/.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
"openfeature/providers/python-provider": "0.4.4",
44
"openfeature/providers/kotlin-provider": "0.3.0",
55
"modules/evaluation": "0.1.1",
6-
"modules/core": "0.1.0"
6+
"modules/core": "0.1.1"
77
}

Makefile

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,9 @@ build-wasi: create-out-dir ## Build the wasi evaluation library in out/bin/
5151

5252
build-modules: ## Run build command to build all modules in the workspace
5353
@echo "Building all modules in go.work..."
54-
@$(GOCMD) work edit -json | jq -r '.Use[].DiskPath' | while read m; do \
55-
echo "→ Building $$m"; \
56-
( cd "$$m" && CGO_ENABLED=0 GO111MODULE=on $(GOWORK_ENV) $(GOCMD) build $(MODFLAG) ./... ); \
57-
done
54+
$(foreach module, $(ALL_GO_MOD_DIRS), \
55+
echo "→ Building $(module)"; \
56+
cd $(module) && CGO_ENABLED=0 GO111MODULE=on $(GOWORK_ENV) $(GOCMD) build $(MODFLAG) ./... && cd - > /dev/null;)
5857

5958

6059
build-doc: ## Build the documentation
@@ -76,12 +75,7 @@ tidy: ## Run go mod tidy for all modules in the workspace
7675
ifeq ($(CI),)
7776
$(GOWORK_ENV) $(GOCMD) work sync
7877
endif
79-
@echo "Tidying all modules in go.work..."
80-
@$(GOCMD) work edit -json | jq -r '.Use[].DiskPath' | while read m; do \
81-
echo "→ Tidying $$m"; \
82-
( cd "$$m" && $(GOWORK_ENV) $(GOCMD) mod tidy ); \
83-
done
84-
78+
@$(foreach module, $(ALL_GO_MOD_DIRS), (echo "→ Tidying $(module)"; cd $(module) && $(GOWORK_ENV) $(GOCMD) mod tidy);)
8579

8680
## Dev:
8781
workspace-init:

modules/core/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [0.1.1](https://github.com/thomaspoignant/go-feature-flag/compare/modules/core/v0.1.0...modules/core/v0.1.1) (2025-10-14)
4+
5+
6+
### 🔧 Chores
7+
8+
* **repo:** Create an evaluation go module ([#4079](https://github.com/thomaspoignant/go-feature-flag/issues/4079)) ([2305959](https://github.com/thomaspoignant/go-feature-flag/commit/230595939b35e9472a422e0b265fb450b20d3651))
9+
310
## 0.1.0 (2025-10-10)
411

512

0 commit comments

Comments
 (0)