Imagine an organization of a repository like this:
/Project1/branches
/tags/Rel-1.0
/trunk
/Module1/branches
/tags/Rel-1.0
/tags/Rel-1.1
/tags/Rel-2.0
/trunk
/Module2/branches
/tags/Rel-1.0
/tags/Rel-1.1
/tags/Rel-1.2
/tags/Rel-1.3
/tags/Rel-2.0
/tags/Rel-2.1
/trunk
The project1 is using Module1 and Module2. The release 1.0 of project1 is done by using release 1.0 of Module1 and Module2.
The new release of project1 (named for example 1.1, not a major evolution) is done by using Release 2.0 of Module1 and 2.1 of Module2.
How can do this by using subversion.
I would try to solve dependency management outside SVN (think of Apache Maven or Ivy in the Javaverse).
If it has to be SVN, how about special tag names? So you could introduce a convention that your build system looks in special folders for versions it depends on, like
/Module1/branches/deps/Project1/Rel-1.0
for the code your Rel-1.0 build of Project1 needs.You could create the folders for dependents by referencing to the tag folders:
Switching versions later would look like
The downside of this approach could be more space requirement for SVN working directories.