hipdf 1.3.2

A high-level PDF manipulation library built on lopdf
Documentation
module.exports = {
  branches: ["main", { name: "next", prerelease: true }],
  plugins: [
    "@semantic-release/commit-analyzer",
    "@semantic-release/release-notes-generator",
    [
      "@semantic-release/github",
      {
        assets: [
          { path: "dist/**/*", label: "Distribution files" },
        ]
      }
    ],
    [
      "@semantic-release/exec",
      {
        // Prepare step: Set the crate version and build the project
        prepareCmd: "cargo set-version -p hipdf ${nextRelease.version} && cargo build -p hipdf --release",
        // Publish step: Publish the crate to crates.io
        publishCmd: "cargo publish -p hipdf --allow-dirty --token ${process.env.CARGO_REGISTRY_TOKEN}",
      }
    ],
  ],
};