Skip to content

Releases: ocomsoft/makemigrations

Release v0.2.1.1

30 Sep 04:27

Choose a tag to compare

Release v0.2.1.1

Django-style Migration Generator for Go

This release provides cross-platform binaries for the makemigrations tool.

Supported Platforms

  • Linux: amd64, arm64
  • macOS: amd64 (Intel), arm64 (Apple Silicon)
  • Windows: amd64, arm64

Quick Installation

Linux/macOS

# Download and install (replace with your platform/arch)
curl -L "https://github.com/ocomsoft/makemigrations/releases/download/v0.2.1.1/makemigrations-linux-amd64" -o makemigrations
chmod +x makemigrations
sudo mv makemigrations /usr/local/bin/

# Verify installation
makemigrations --version

Windows (PowerShell)

# Download (replace with your architecture)
Invoke-WebRequest -Uri "https://github.com/ocomsoft/makemigrations/releases/download/v0.2.1.1/makemigrations-windows-amd64.exe" -OutFile "makemigrations.exe"

# Add to PATH or use directly
.\makemigrations.exe --version

Available Downloads

  • makemigrations-linux-amd64 - Linux x86_64
  • makemigrations-linux-arm64 - Linux ARM64
  • makemigrations-darwin-amd64 - macOS Intel
  • makemigrations-darwin-arm64 - macOS Apple Silicon
  • makemigrations-windows-amd64.exe - Windows x86_64
  • makemigrations-windows-arm64.exe - Windows ARM64
  • checksums.txt - SHA256 checksums for verification

Verification

Verify your download with SHA256 checksums:

sha256sum -c checksums.txt

Getting Started

# Initialize a new project
makemigrations init

# Generate migrations from YAML schemas
makemigrations makemigrations

# Convert Go structs to YAML schema
makemigrations struct2schema

# Get help
makemigrations --help

For detailed documentation and examples, visit our GitHub repository.

Full Changelog: v0.2.1...v0.2.1.1