svn diff --summarize url/to/tag1.0 url/to/tag1.1
will give you a list of files that changed between those two tags. You should be able to parse that list in a script and export each file individually with either
svn export url/to/file filepath
or
svn cat url/to/file > file
If you're using TortoiseSVN:
- open the repository browser, browse to tag1.0, right-click, choose "mark for comparison"
- browse to tag1.1, right-click, choose "compare urls"
- in the file diff dialog, select all files/folders that changed between the tags (Ctrl+A)
- right-click, choose "export to..."