# Recruitly WordPress Plugin Release Instructions

## CODE CHANGES

1. **Update readme.txt**
    - Change "Stable tag:" value (increment minor version): `Stable tag: 2.0.33` → `Stable tag: 2.0.34`
    - Add changelog entry describing what changed

2. **Update main plugin file (recruitly.php)**
    - Update "Version:" field to match stable tag
    - Update RECRUITLY_PLUGIN_VERSION constant to match stable tag: `define('RECRUITLY_PLUGIN_VERSION', '2.0.34');`

**Files modified:** readme.txt and recruitly.php
**Result:** You have a new version number (e.g., 2.0.36)

## COMMIT CHANGES

Commit all changes to trunk:
```bash
svn commit -m "Release version 2.0.36"
```

## CREATE NEW TAG

Create SVN tag with your version number:
```bash
svn copy trunk tags/2.0.36
svn commit -m "Tag version 2.0.36"
```

**Done.** Plugin will be available on WordPress.org within a few minutes.