I created a changelist by doing...
$ svn changelist my_changes
... added files to it, and then committed the changelist...
$ svn ci --changelist my_changes --keep-changelists
... so now, I have "kept" my changelist and it shows up every time I view status.
$ svn status
... modified/added/deleted files listed here...
--- Changelist 'my_changes':
... files that are a part of this changelist listed here...
I "kept" the changelist for a reason, but I don't need it anymore so I'm ready to remove it. How do I remove this changelist from SVN? I know how to remove files from the changelist, but not the changelist itself.