packages feed

clod 0.1.28 → 0.1.29

raw patch · 6 files changed

+16/−5 lines, 6 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -1,6 +1,6 @@ # Changelog -## [0.1.28] - 2025-04-04+## [0.1.29] - 2025-04-04  - [Automate release process](https://www.youtube.com/watch?v=MK6TXMsvgQg) 
bin/release view
@@ -623,6 +623,17 @@   # Replace the SHA line with the marker   sed -i '' "s|.*BOTTLE_SHA256_MARKER.*|$BOTTLE_SHA_TEMPLATE|" Formula/clod.rb   +  # Check for BOTTLE_URL_MARKER and update the bottle URL for double-hyphen filenames+  if ! grep -q "BOTTLE_URL_MARKER" Formula/clod.rb; then+    echo "ERROR: BOTTLE_URL_MARKER not found in formula. Cannot update bottle URL safely."+    echo "Please add a bottle_url line with BOTTLE_URL_MARKER to the formula."+    exit 1+  fi+  +  # Update the bottle URL to handle double-hyphen in bottle filenames+  BOTTLE_URL_TEMPLATE="    bottle_url \"https://github.com/fuzz/clod/releases/download/v$VERSION/$bottle_file\" # BOTTLE_URL_MARKER"+  sed -i '' "s|.*BOTTLE_URL_MARKER.*|$BOTTLE_URL_TEMPLATE|" Formula/clod.rb+     # Verify the changes were made correctly   if ! grep -q "v$VERSION.*BOTTLE_ROOT_URL_MARKER" Formula/clod.rb; then     echo "ERROR: Bottle root_url update failed. Please check Formula/clod.rb manually."
clod.cabal view
@@ -1,6 +1,6 @@ cabal-version:       2.4 name:                clod-version:             0.1.28+version:             0.1.29 synopsis:            Project file manager for Claude AI integrations description:         Clod (Claude Loader) is a utility for preparing and uploading files to Claude AI's                       Project Knowledge feature. It tracks file changes, respects .gitignore and .clodignore 
man/clod.1.md view
@@ -1,4 +1,4 @@-% CLOD(1) Clod 0.1.28+% CLOD(1) Clod 0.1.29 % Fuzz Leonard & Claude <ink@fuzz.ink> % March 2025 
man/clod.7.md view
@@ -1,4 +1,4 @@-% CLOD(7) Clod 0.1.28+% CLOD(7) Clod 0.1.29 % Fuzz Leonard & Claude <ink@fuzz.ink> % March 2025 
man/clod.8.md view
@@ -1,4 +1,4 @@-% CLOD(8) Clod 0.1.28+% CLOD(8) Clod 0.1.29 % Fuzz Leonard & Claude <ink@fuzz.ink> % March 2025